/* Root Variables & Design Tokens */
:root {
    --bg-primary: #fbfbfd;
    --bg-secondary: #ffffff;
    --bg-soft: #f5f5f7;
    --bg-dark: #121212;
    --text-primary: #1d1d1f;
    --text-secondary: #424245;
    --text-muted: #86868b;
    --accent: #003366; /* Deep Navy */
    --accent-hover: #004080;
    --border-color: #d2d2d7;
    --container-max: 1200px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 4px 32px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 16px 64px rgba(0, 0, 0, 0.06);
}

/* Background Grain Texture to make it less "digital" */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 9999;
    pointer-events: none;
    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)'/%3E%3C/svg%3E");
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.section-padding {
    padding: 70px 0;
}

.bg-soft { background-color: var(--bg-soft); }
.bg-dark { background-color: var(--bg-dark); }
.text-white { color: white; }

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(251, 251, 253, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    font-size: 1.25rem;
    letter-spacing: -0.5px;
    font-weight: 600;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 10px;
    transition: var(--transition);
}

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

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

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

.btn-cta {
    background: var(--text-primary);
    color: white !important;
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
}

.btn-cta:hover {
    transform: scale(1.05);
}

/* Hero Section */
#hero {
    padding-top: 130px;
    padding-bottom: 70px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

#hero h1 {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 2.5rem;
    letter-spacing: -0.04em;
    font-weight: 700;
}

.highlight {
    color: var(--accent);
    font-style: italic;
    font-family: inherit;
}

.hero-subtext {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 2rem;
}

.link-inline {
    color: var(--text-primary);
    font-weight: 600;
    border-bottom: 2px solid var(--accent);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.link-action {
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 1px solid transparent;
}

.link-action:hover {
    border-bottom-color: var(--text-primary);
}

.profile-img {
    width: 100%;
    max-width: 440px;
    border-radius: 32px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
    animation: floating 6s ease-in-out infinite;
    transition: var(--transition);
}

.profile-img:hover {
    transform: scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 51, 102, 0.15);
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
}

.about-text {
    margin-bottom: 3rem;
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.about-text p {
    margin-bottom: 1.5rem;
}

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

.value-item {
    background: var(--bg-secondary);
    padding: 1.25rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.03);
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-card {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    gap: 1.25rem;
    align-items: center;
    box-shadow: var(--shadow-soft);
}

.h-icon {
    font-size: 1.5rem;
    background: var(--bg-soft);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.h-info h3 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.h-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.philosophy-box {
    background: var(--bg-dark);
    color: white;
    padding: 2.5rem;
    border-radius: 24px;
    margin-top: 1rem;
}

.p-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.philosophy-box h3 {
    margin-bottom: 1rem;
}

.philosophy-box p {
    font-style: italic;
    opacity: 0.8;
}

/* Skills Section (Compact Redesign) */
#habilidades.section-padding {
    padding: 60px 0;
}

.skills-levels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.skill-category-box {
    background: var(--bg-secondary);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.02);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
}

.category-header h3 {
    font-size: 1.1rem;
    margin: 0;
}

.category-header svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    opacity: 0.8;
}

.skill-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sp-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: var(--text-secondary);
}

.sp-bar {
    height: 3px;
    background: var(--bg-soft);
    border-radius: 4px;
    overflow: hidden;
}

.sp-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 4px;
}

/* Education Clean Redesign */
.education-grid-clean {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    border-top: 1px solid var(--border-color);
    padding-top: 3rem;
}

.edu-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 2rem;
}

.edu-item-minimal {
    margin-bottom: 2rem;
}

.edu-item-minimal h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.edu-item-minimal p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.clean-list {
    padding: 0;
}

.clean-list li {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
}

.clean-list li strong {
    color: var(--text-primary);
    display: block;
}

.clean-list li span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Projects Dense Grid (5x2) */
.projects-dense-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.project-mini-card {
    background: var(--bg-secondary);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.pm-image {
    height: 140px;
    overflow: hidden;
    background: var(--bg-soft);
}

.pm-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    opacity: 0.9;
}

.pm-info {
    padding: 1.5rem 2rem;
    text-align: left;
}

.pm-logo {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
}

.pm-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pm-list li {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.25rem;
}

.pm-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.6;
}

.project-mini-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.project-mini-card:hover .pm-image img {
    transform: scale(1.1);
    opacity: 1;
}

.project-mini-card:hover .pm-logo {
    color: var(--accent);
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .projects-dense-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .education-grid-clean { grid-template-columns: 1fr; gap: 3rem; }
    .projects-dense-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .projects-dense-grid { grid-template-columns: 1fr; }
}

/* Banner Statement (kept for other uses) */
.banner-statement {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 80px 0;
}

.statement-txt {
    font-size: 2.5rem;
    max-width: 900px;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.2;
}

/* Timeline */
.section-tag {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 0;
    width: 1px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: calc(-2rem - 5px);
    top: 10px;
    width: 9px;
    height: 9px;
    background: var(--bg-primary);
    border: 2px solid var(--accent);
    border-radius: 50%;
}

.timeline-date {
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.timeline-desc {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    max-width: 600px;
}

.bottom-line {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding-left: 1rem;
    border-left: 3px solid var(--accent);
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.skill-card {
    background: var(--bg-secondary);
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.skill-card h3 {
    margin-bottom: 1.5rem;
}

.skill-card ul li {
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.skill-card ul li::before {
    content: '•';
    color: var(--accent);
}

/* Problems Section (O Custo da Execuo sem Ordem) */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.problem-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 16px;
    border-left: 3px solid #e0e0e0;
    transition: var(--transition);
}

.problem-card:hover {
    border-left-color: var(--accent);
    transform: translateX(5px);
    box-shadow: var(--shadow-soft);
}

.problem-card h3 {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.problem-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Solutions Section (Aligned Aligned Design) */
.services-aligned-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.solution-card-clean {
    background: var(--bg-secondary);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.02);
    transition: var(--transition);
}

.solution-card-clean:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.s-tag-clean {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 1.5rem;
}

.solution-card-clean h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.solution-card-clean p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.s-list-clean {
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.s-list-clean li {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.s-list-clean li::before {
    content: '•';
    color: var(--accent);
}

@media (max-width: 1100px) {
    .services-aligned-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .services-aligned-grid { grid-template-columns: 1fr; }
}

/* Project Cards */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.project-card {
    cursor: pointer;
}

.project-img-wrapper {
    height: 400px;
    background: #e5e5e7;
    border-radius: 24px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.project-placeholder {
    font-weight: 700;
    color: #a1a1a6;
    font-size: 1.5rem;
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.project-category {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.project-card:hover .project-img-wrapper {
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

/* Social Media Section */
.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.social-card {
    background: var(--bg-secondary);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.02);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.social-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-soft);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: var(--transition);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-card:hover .social-icon {
    background: var(--accent);
    color: white;
}

.social-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.social-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}


/* Contact */
.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.contact-text h2 {
    font-size: 3.5rem;
    max-width: 600px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.btn-main {
    display: inline-block;
    background: white;
    color: var(--bg-dark);
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 600;
    margin-top: 2rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: right;
}

.contact-links a {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.7);
}

.contact-links a:hover {
    color: white;
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* --- Responsive Design --- */

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    #hero h1 {
        order: 1;
        margin-bottom: 0;
        font-size: clamp(2.5rem, 8vw, 3.5rem); 
        line-height: 1.1;
    }
    
    .hero-image-container { 
        order: 2; 
        display: flex; 
        justify-content: center; 
    }

    .hero-subtext { 
        order: 3;
        margin: 1rem auto 2rem; 
    }
    
    .hero-actions { 
        order: 4;
        justify-self: center;
        justify-content: center; 
    }
    
    .about-main { order: 2; }
    .about-highlights { order: 1; }
    
    .skills-levels-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .services-aligned-grid, .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding { padding: 80px 0; }
    
    .section-title { font-size: 2rem; }
    
    /* Navbar Mobile */
    .menu-toggle { display: flex; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 4rem 2rem;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .btn-cta {
        width: 100%;
        text-align: center;
    }
    
    /* Hero */
    #hero { padding-top: 140px; }
    
    /* About */
    .values-grid { grid-template-columns: 1fr; }
    
    /* Skills */
    .skills-levels-grid { grid-template-columns: 1fr; }
    
    /* Education */
    .education-grid-clean { 
        grid-template-columns: 1fr; 
        gap: 3rem; 
    }
    
    /* Services & Problems */
    .services-aligned-grid, .problems-grid { grid-template-columns: 1fr; }

    /* Social Media */
    .social-grid { grid-template-columns: 1fr; }


    /* Timeline */
    .timeline-content h3 { font-size: 1.25rem; }
    
    /* Contact */
    .contact-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 3rem;
    }
    
    .contact-text h2 { 
        font-size: 2.5rem; 
        width: 100%;
    }
    
    /* Global Mobile Centering */
    .section-header, .about-main, .about-text, .philosophy-box, 
    .timeline-item, .service-row, .process-step, 
    .skill-category-box, .edu-column, .ps-info, 
    .problem-card, .value-item {
        text-align: center;
        align-items: center;
    }
    
    .section-header {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .timeline-item {
        flex-direction: column;
    }

    .sr-features ul, .clean-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .ps-tags {
        justify-content: center;
    }

    .ps-header {
        flex-direction: column;
        justify-content: center;
        gap: 0.5rem;
    }

    .category-header {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    #hero h1 { font-size: 2.25rem; }
    
    .hero-actions {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .separator { display: none; }
    
    .highlight-card {
        flex-direction: column;
        text-align: center;
    }
}

/* --- NEW SECTIONS STYLES (Atlas Nexium Inspired) --- */

/* Process Section */
.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4da6ff;
    opacity: 0.9;
    margin-bottom: 1rem;
    line-height: 1;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

.process-step p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Services Horizontal Row */
.services-list-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-row {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 2fr 1.5fr auto;
    gap: 3rem;
    align-items: center;
    transition: var(--transition);
}

.service-row:hover {
    box-shadow: var(--shadow-soft);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.sr-main h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.sr-main p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.sr-features-title {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.sr-features ul {
    list-style: none;
}

.sr-features li {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.btn-outline {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--accent);
    color: var(--accent);
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--accent);
    color: #fff;
}

/* Projects Showcase */
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

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

.project-showcase-card {
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
}

.project-showcase-card:hover {
    transform: translateY(-5px);
}

.ps-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: transparent;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.ps-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.project-showcase-card:hover .ps-image img {
    transform: scale(1.03);
}

.ps-info {
    padding: 1.5rem 0 0 0;
    border-top: none;
}

.ps-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.ps-title {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.ps-link-icon {
    color: var(--text-muted);
    transition: var(--transition);
}

.project-showcase-card:hover .ps-link-icon {
    color: var(--accent);
    transform: translate(2px, -2px);
}

.ps-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.ps-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.ps-tags li {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    background: var(--bg-soft);
    padding: 0.4rem 0.8rem;
    border-radius: 100px;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .service-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .process-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-showcase-grid {
        grid-template-columns: 1fr;
    }
    .process-steps-grid {
        grid-template-columns: 1fr;
    }
}
