* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a1628 0%, #0d2b3e 50%, #0a1628 100%);
    color: #ffffff;
    line-height: 1.5;
    scroll-behavior: smooth;
    min-height: 100vh;
}

/* Glass Navbar */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.glass-nav.scrolled {
    background: rgba(10, 22, 40, 0.95);
    padding: 0.7rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: white;
}

.logo span {
    font-weight: 500;
    background: linear-gradient(135deg, #00a2ff, #0066cc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links a {
    text-decoration: none;
    margin-left: 2rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    transition: all 0.2s;
}

.nav-links a:hover, .nav-links a.active {
    color: #00a2ff;
}

/* Main content - compensa navbar fixa */
main {
    padding-top: 80px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
}

.badge {
    background: rgba(0,162,255,0.15);
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #00a2ff;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.gradient-text {
    background: linear-gradient(135deg, #00a2ff, #0066cc, #004c99);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-sub {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 48px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #00a2ff, #0066cc);
    color: white;
    margin-right: 1rem;
    border: none;
}

.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,102,204,0.3);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
}

/* ===== ANIMAÇÕES DE SCROLL ===== */
.fade-up, .fade-left, .fade-right {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-left {
    transform: translateX(-30px);
}

.fade-right {
    transform: translateX(30px);
}

.fade-up.visible, .fade-left.visible, .fade-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sections com gradiente */
.services-descriptive, .sectors, .phases, .faq, .contact, .clients-showcase {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00a2ff;
    font-weight: 600;
}

.section-header h2 {
    color: white;
    font-size: 2.5rem;
}

/* Cards com fundo semi-transparente */
.descriptive-card, .service-card, .sector-card, .phase, .faq-item, .client-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 28px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.descriptive-card:hover, .service-card:hover, .client-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
    border-color: rgba(0,162,255,0.5);
}

.descriptive-card i, .service-card i, .sector-card i {
    font-size: 2.5rem;
    color: #00a2ff;
    margin-bottom: 1rem;
}

.descriptive-card h3, .service-card h3, .sector-card h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.descriptive-card p, .service-card p {
    color: rgba(255,255,255,0.7);
}

/* Grids */
.descriptive-grid, .service-grid, .sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Stats Section */
.stats-section {
    padding: 3rem 0;
    background: rgba(0,0,0,0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00a2ff, #0066cc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
}

/* Phases Timeline */
.phases-timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

/* Clients Page - Estilos específicos */
.clients-showcase {
    padding: 2rem 0 4rem 0;
}

.client-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    transition: all 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 162, 255, 0.3);
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.real-logo {
    max-width: 180px;
    max-height: 100px;
    object-fit: contain;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem;
}

.client-details h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.badge-client {
    background: linear-gradient(135deg, #00a2ff, #0066cc);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    margin-left: 1rem;
    vertical-align: middle;
}

.client-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.work-done {
    margin: 1.5rem 0;
}

.work-done h3 {
    color: #00a2ff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.work-done ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.6rem;
}

.work-done li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.work-done li i {
    color: #00a2ff;
    margin-right: 0.6rem;
}

.btn-visit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #00a2ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-visit:hover {
    color: #0066cc;
    transform: translateX(5px);
}

.cta-clients {
    padding: 2rem 0 5rem 0;
}

.cta-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 3rem;
    text-align: center;
}

.cta-card h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .client-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .client-logo {
        margin-bottom: 1rem;
    }
    
    .real-logo {
        max-width: 140px;
    }
    
    .work-done ul {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .badge-client {
        display: inline-block;
        margin-top: 0.5rem;
    }
    
    .cta-card h3 {
        font-size: 1.5rem;
    }
}

.phase {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.phase-num {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00a2ff, #0066cc);
    border-radius: 40px;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    color: white;
}

.faq-question i {
    transition: transform 0.3s;
    color: #00a2ff;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.2rem;
    color: rgba(255,255,255,0.7);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.2rem 1.2rem 1.2rem;
}

/* Contact Card */
.contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 32px;
    padding: 2.5rem;
}

.contact-info h2 {
    color: white;
}

.contact-info p {
    color: rgba(255,255,255,0.7);
}

.contact-detail {
    margin-top: 1.5rem;
    font-weight: 500;
    color: #00a2ff;
}

.input-group {
    margin-bottom: 1.2rem;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(255,255,255,0.1);
    color: white;
}

input::placeholder, textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

input:focus, textarea:focus {
    outline: none;
    border-color: #00a2ff;
    box-shadow: 0 0 0 3px rgba(0,162,255,0.2);
}

.full {
    width: 100%;
    text-align: center;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
}

/* Client logos */
.real-logo {
    max-width: 180px;
    max-height: 100px;
    object-fit: contain;
    border-radius: 16px;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem;
}

/* CTA Clients */
.cta-card {
    background: rgba(255,255,255,0.05);
    border-radius: 32px;
    padding: 3rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .nav-container { flex-direction: column; gap: 1rem; }
    .nav-links a { margin: 0 1rem; }
    .contact-card { grid-template-columns: 1fr; }
    .phases-timeline { flex-direction: column; }
    .real-logo { max-width: 120px; }
}

/* Service block (página serviços) */
.service-block {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 28px;
    margin-bottom: 2rem;
}

.service-icon {
    font-size: 2rem;
    color: #00a2ff;
    margin-bottom: 1rem;
}

.service-block h2 {
    color: white;
    margin-bottom: 0.75rem;
}

.service-block p {
    color: rgba(255,255,255,0.7);
}

.service-features {
    margin-top: 1rem;
    padding-left: 1.2rem;
    color: rgba(255,255,255,0.7);
}

.service-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0,162,255,0.1);
    border-radius: 32px;
}

/* About page */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.about-stats div {
    background: rgba(255,255,255,0.05);
    padding: 1rem;
    border-radius: 20px;
    text-align: center;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.mission, .vision {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 28px;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.value-item {
    background: rgba(255,255,255,0.05);
    padding: 0.8rem 1.5rem;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}


/* ===== SOBRE PAGE - ESTILOS ESPECÍFICOS ===== */

/* Hero small com badge central */
.badge-center {
    background: rgba(0, 162, 255, 0.15);
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #00a2ff;
    margin-bottom: 1.5rem;
}

.hero-small {
    padding: 4rem 0 3rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(10,22,40,0.8), rgba(13,43,62,0.9));
}

/* História */
.history-section {
    padding: 4rem 0;
}

.history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.history-text h2 {
    font-size: 2.2rem;
    margin: 0.5rem 0 1.5rem 0;
    color: white;
}

.history-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.history-image {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.year-badge {
    background: linear-gradient(135deg, rgba(0,162,255,0.15), rgba(0,102,204,0.1));
    border: 1px solid rgba(0,162,255,0.3);
    border-radius: 32px;
    padding: 2rem;
    text-align: center;
}

.year-badge .year {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00a2ff, #0066cc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.year-badge .label {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
}

.code-quote {
    background: rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 1.5rem;
    text-align: center;
}

.code-quote i {
    font-size: 2rem;
    color: #00a2ff;
    margin-bottom: 0.5rem;
}

.code-quote p {
    font-style: italic;
    color: rgba(255,255,255,0.8);
}

/* Estatísticas detalhadas */
.stats-detailed {
    padding: 3rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.stats-grid-detailed {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.03);
    border-radius: 24px;
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00a2ff, #0066cc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-card .stat-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0.5rem 0;
}

.stat-card .stat-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* MVP Grid */
.mission-vision-section {
    padding: 4rem 0;
}

.mvp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.mvp-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 28px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.mvp-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(0,162,255,0.3);
}

.mvp-icon {
    font-size: 2.5rem;
    color: #00a2ff;
    margin-bottom: 1rem;
}

.mvp-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mvp-card p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.mvp-detail {
    font-size: 0.85rem;
    color: #00a2ff;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Valores detalhados */
.values-detailed {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.15);
}

.values-grid-detailed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: rgba(255,255,255,0.03);
    border-radius: 24px;
    padding: 1.8rem;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-3px);
}

.value-card i {
    font-size: 2rem;
    color: #00a2ff;
    margin-bottom: 1rem;
}

.value-card h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.value-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Abordagem */
.approach-section {
    padding: 4rem 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.approach-content h2 {
    font-size: 2rem;
    margin: 0.5rem 0 1.5rem 0;
    color: white;
}

.approach-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.approach-list {
    list-style: none;
    margin-top: 1.5rem;
}

.approach-list li {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.approach-list li i {
    color: #00a2ff;
}

.approach-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.approach-stat-item {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
}

.stat-number-small {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00a2ff, #0066cc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label-small {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

/* Equipa */
.team-section {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.1);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.team-card {
    background: rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 1.8rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
}

.team-icon {
    font-size: 2rem;
    color: #00a2ff;
    margin-bottom: 1rem;
}

.team-card h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.team-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* CTA About */
.cta-about {
    padding: 3rem 0 5rem 0;
}

.cta-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 32px;
    padding: 3rem;
    text-align: center;
}

.cta-card h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-card p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 992px) {
    .stats-grid-detailed,
    .mvp-grid,
    .values-grid-detailed,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .history-grid,
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .stats-grid-detailed,
    .mvp-grid,
    .values-grid-detailed,
    .team-grid,
    .approach-stats {
        grid-template-columns: 1fr;
    }
    
    .history-text h2,
    .approach-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-card h3 {
        font-size: 1.5rem;
    }
}


/* ===== SERVIÇOS PAGE - ESTILOS ESPECÍFICOS ===== */

/* Categorias Tabs */
.services-categories {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.6rem 1.5rem;
    border-radius: 40px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.category-btn:hover {
    background: rgba(0,162,255,0.15);
    border-color: rgba(0,162,255,0.3);
    color: white;
}

.category-btn.active {
    background: linear-gradient(135deg, #00a2ff, #0066cc);
    border-color: transparent;
    color: white;
}

/* Lista de Serviços */
.services-list {
    padding: 3rem 0;
}

.service-item {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 32px;
    margin-bottom: 2rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(0,162,255,0.3);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.8rem 2rem;
    background: rgba(0,0,0,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.service-icon-large {
    display: flex;
    gap: 0.5rem;
    font-size: 2.5rem;
    color: #00a2ff;
    min-width: 70px;
}

.service-header h2 {
    color: white;
    font-size: 1.4rem;
    margin: 0;
}

.service-content {
    padding: 1.8rem 2rem;
}

.service-content > p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features h4 {
    color: #00a2ff;
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.service-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 0.6rem;
}

.service-features li {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li i {
    color: #00a2ff;
    font-size: 0.8rem;
}

/* Tech Stack */
.tech-stack {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.tech-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 60px;
    padding: 0.6rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(0,162,255,0.1);
    border-color: rgba(0,162,255,0.3);
    transform: translateY(-2px);
}

.tech-item i {
    font-size: 1.3rem;
    color: #00a2ff;
}

.tech-item span {
    color: white;
    font-weight: 500;
}

/* CTA Services */
.cta-services {
    padding: 3rem 0 5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        padding: 1.5rem;
    }
    
    .service-header h2 {
        font-size: 1.2rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-features ul {
        grid-template-columns: 1fr;
    }
    
    .category-btn {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .tech-item {
        padding: 0.4rem 1rem;
    }
}