/* Reset e base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #1a1a1a;
    overflow-x: hidden;
    min-height: 100%;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container {
    text-align: center;
    color: #ffffff;
}

.loading {
    width: 50px;
    height: 50px;
    border: 3px solid #333333;
    border-top: 3px solid #FF026F;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Magic Cursor: esconde o cursor do sistema em toda a página; só o #magic-cursor fica visível */
html,
body,
* {
    cursor: none !important;
}

#magic-cursor {
    position: fixed;
    width: 28px;
    height: 28px;
    left: 0;
    top: 0;
    margin-left: -14px;
    margin-top: -14px;
    background: #FF026F;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.08s ease-out;
    box-shadow:
        0 0 0 4px rgba(255, 2, 111, 0.5),
        0 0 24px 8px rgba(255, 2, 111, 0.7),
        0 0 48px 16px rgba(255, 2, 111, 0.4);
}

/* Page wrapper: full document height so background spans entire scroll */
#page-wrap {
    position: relative;
    min-height: 100vh;
}

/* Seções e rodapé acima do .bg-canvas (z-index 0), igual em home e blog */
#page-wrap > section,
#page-wrap > footer.footer {
    position: relative;
    z-index: 1;
}

/* Background: GPU-friendly; textura carbon em .bg-carbon (wallpaper igual em todas as páginas com #page-wrap) */
.bg-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    transform: translateZ(0);
    backface-visibility: hidden;
    contain: layout style paint;
}

/* Simple carbon background + fibra de carbono (assets/carbon.png) bem leve */
.bg-carbon {
    position: absolute;
    inset: 0;
    background-color: #141416;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent 0,
            transparent 1px,
            rgba(0, 0, 0, 0.12) 1px,
            rgba(0, 0, 0, 0.12) 2px
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 1px,
            rgba(0, 0, 0, 0.12) 1px,
            rgba(0, 0, 0, 0.12) 2px
        );
    transform: translateZ(0);
}

.bg-carbon::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/carbon.png');
    background-repeat: repeat;
    background-size: auto;
    opacity: 0.03;
    pointer-events: none;
}

/* Partículas por seção: cada área tem seu canvas; só anima quando visível */
.section-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    transform: translateZ(0);
    contain: strict;
}

.section-particles > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-particles canvas {
    display: block;
}

/* Header: mesmo estilo do footer (gradiente) */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border-bottom: 1px solid rgba(255, 2, 111, 0.2);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #FF026F;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #FF026F;
}

.download-cv-btn {
    background: #FF026F;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.download-cv-btn:hover {
    background: #e6005c;
    transform: translateY(-2px);
}

/* Hero Section (background transparent so particles show through) */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 20px 50px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title span {
    color: #FF026F;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-primary {
    background: #FF026F;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #FF026F;
    box-shadow: 0 4px 14px rgba(255, 2, 111, 0.4);
}

#submit-btn {
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-primary:hover {
    background: transparent;
    color: #FF026F;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 2, 111, 0.45);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background: #FF026F;
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); */
}

.experience-counter {
    position: absolute;
    top: 9px;
    right: 20px;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    background: #1f1f1f;
    border: 1px solid rgba(255, 2, 111, 0.1);
    box-shadow: 0 10px 30px rgba(255, 2, 111, 0.1);
}

.counter-number {
    font-size: 2rem;
    font-weight: 700;
    color: #FF026F;
}

.counter-label {
    font-size: 0.9rem;
    color: #fff;
}

/* Technologies Section */
.tech-strip {
    overflow: hidden;
    width: 100%;
    margin-top: 40px;
}

.tech-ticker-content {
    display: flex;
    align-items: center;
    gap: 32px;
    width: max-content;
    padding: 0 24px;
    animation: scrollTech 30s linear infinite;
}

@keyframes scrollTech {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.tech-ticker-content .ticker-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.tech-ticker-content .ticker-item::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    padding: 6px 10px;
    background: rgba(255, 2, 111, 0.95);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.tech-ticker-content .ticker-item:hover::after {
    opacity: 1;
}

.customer-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.customer-avatar svg {
    color: #fff;
    fill: #fff;
}

.add-more {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #FF026F;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
}

/* Scrolling Ticker */
.scrolling-ticker {
    background: rgba(255, 2, 111, 0.1);
    padding: 15px 0;
    width: 100%;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.ticker-content {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 500;
    white-space: nowrap;
}

.ticker-icon {
    width: 20px;
    height: 20px;
}

/* mudança essencial: só vai até metade */
@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* Section Styles */
section {
    position: relative;
    padding: 80px 20px;
}

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

.header {
    text-align: center;
    margin-bottom: 60px;
}

.subtitle {
    font-size: 1.1rem;
    color: #FF026F;
    margin-bottom: 10px;
    font-weight: 500;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.section-title span {
    color: #FF026F;
}

.description {
    font-size: 1.1rem;
    color: #cccccc;
    /* max-width: 600px; */
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: #1f1f1f;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 2, 111, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 2, 111, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 2, 111, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF026F 0%, #e6005c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.service-description {
    color: #cccccc;
    line-height: 1.6;
}

.view-all-btn {
    text-align: center;
}

.btn-outline {
    background: transparent;
    color: #FF026F;
    border: 2px solid #FF026F;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: #FF026F;
    color: white;
    transform: translateY(-2px);
}

/* Engagement / Modelos de Contratação */
.engagement-cta {
    margin-top: 48px;
    text-align: center;
}

.engagement-cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.engagement-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-features {
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF026F 0%, #e6005c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.feature-content p {
    color: #cccccc;
    line-height: 1.6;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding: 15px;
    border-radius: 15px;
    background: #1f1f1f;
    border: 1px solid rgba(255, 2, 111, 0.1);
    box-shadow: 0 10px 30px rgba(255, 2, 111, 0.1);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF026F;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
}

.about-image {
    position: relative;
    background-color: #000;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 2, 111, 0.1);
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #1f1f1f;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 243, 248, 0.205);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #FF026F;
}

/* Portfolio Section */
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.filter-btn {
    background: transparent;
    color: #cccccc;
    border: 2px solid #444444;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #FF026F;
    color: white;
    border-color: #FF026F;
}

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

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 2, 111, 0.1);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 2, 111, 0.2);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 2, 111, 0.9) 0%, rgba(230, 0, 92, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.portfolio-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.portfolio-content p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    color: #FF026F;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    transform: scale(1.1);
}

/* Testimonials Section */
.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
}

.testimonial-item {
    display: none;
    text-align: center;
}

.testimonial-item.active {
    display: block;
}

.testimonial-content {
    background: #1f1f1f;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 2, 111, 0.1);
}

.testimonial-quote {
    font-size: 3rem;
    color: #FF026F;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.author-info span {
    color: #cccccc;
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e2e8f0;
    background: white;
    color: #666;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    border-color: #667eea;
    color: #667eea;
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #667eea;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF026F 0%, #e6005c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.contact-details p {
    color: #cccccc;
    line-height: 1.6;
}

.contact-form {
    background: #1f1f1f;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 2, 111, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #444444;
    border-radius: 10px;
    font-size: 1rem;
    background: #1a1a1a;
    color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF026F;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    resize: none;
    font-family: 'Poppins', sans-serif;

}

.form-status {
    margin-bottom: 16px;
    padding: 12px;
    border-radius: 6px;
    font-size: 0.95rem;
}

.form-status.success {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.15);
}

.form-status.error {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.15);
}

/* Footer: acima do bg-canvas para não sumir */
.footer {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: white;
    padding: 60px 0 20px;
}

/* Override theme footer CSS with higher specificity */
footer.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%) !important;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-logo h3 {
    background: linear-gradient(135deg, #FF026F 0%, #e6005c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    font-weight: 700;
}

.footer-logo p {
    color: #a0aec0;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #2d3748;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #FF026F;
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

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

.footer-links a:hover {
    color: #FF026F;
}

.contact-info-footer p {
    color: #a0aec0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-footer i {
    color: #FF026F;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #2d2d2d;
    margin-top: 40px;
    padding-top: 20px;
}

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

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

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

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

.footer-bottom-links a:hover {
    color: #FF026F;
}

/* Facts/Stats Section */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.fact-item {
    text-align: center;
    color: white;
}

.fact-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.fact-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Process Section - Vertical Timeline (centered, alternating) */
.process-timeline {
    position: relative;
    margin-top: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-1px);
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(180deg, #FF026F 0%, #e6005c 100%);
    z-index: 0;
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 24px;
    align-items: start;
    position: relative;
    z-index: 1;
    margin-bottom: 32px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:nth-child(odd) .step-content {
    grid-column: 3;
    grid-row: 1;
    text-align: left;
}

.process-step:nth-child(odd) .step-number {
    grid-column: 2;
    grid-row: 1;
}

.process-step:nth-child(even) .step-number {
    grid-column: 2;
    grid-row: 1;
}

.process-step:nth-child(even) .step-content {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
}

.step-number {
    width: 80px;
    height: 80px;
    justify-self: center;
    background: linear-gradient(135deg, #FF026F 0%, #e6005c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.step-content {
    padding-top: 8px;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.step-content p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    text-align: center;
}

.member-image {
    position: relative;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
}

.member-image img {
    /* width: 100%; */
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 300px;
    width: 300px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 2, 111, 0.9) 0%, rgba(230, 0, 92, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.member-overlay .social-links {
    display: flex;
    gap: 15px;
}

.member-overlay .social-links a {
    width: 40px;
    height: 40px;
    background: white;
    color: #FF026F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-overlay .social-links a:hover {
    transform: scale(1.1);
}

.member-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.member-info p {
    color: #cccccc;
}

.member-info .member-role {
    font-weight: 600;
    color: #fff;
}

.member-info .member-role-detail {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.team-text-block {
    margin-top: 24px;
    max-width: 100%;
}

.team-text-block p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0 0 1em 0;
}

.team-text-block p:last-child {
    margin-bottom: 0;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: #1f1f1f;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #FF026F;
}

.pricing-card.featured {
    border-color: #FF026F;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF026F;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.price {
    margin-bottom: 30px;
}

.currency {
    font-size: 1.5rem;
    color: #FF026F;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #FF026F;
}

.period {
    font-size: 1rem;
    color: #cccccc;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    color: #cccccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i {
    color: #FF026F;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: #1f1f1f;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(255, 2, 111, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #333333;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.faq-question i {
    color: #FF026F;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-content {
        order: 1;
    }

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

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

    .nav-menu {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        justify-content: center;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

}
