/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Futuristic Color Palette */
    --primary-color: #007AFF;
    --primary-dark: #0051d5;
    --primary-light: #66B2FF;
    --secondary-color: #ff3366;
    --secondary-dark: #e02950;
    --accent-purple: #5856d6;
    --accent-orange: #ff9500;
    --accent-pink: #ff3366;
    
    /* Modern Background System */
    --bg-primary: #000000;
    --bg-secondary: #1c1c1e;
    --bg-tertiary: #2c2c2e;
    --bg-elevated: rgba(28, 28, 30, 0.9);
    
    /* Glass Morphism */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-tertiary: rgba(255, 255, 255, 0.6);
    --text-accent: #007AFF;
    
    /* Spacing System */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.15);
    --text-muted: rgba(255, 255, 255, 0.5);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.25);
    --shadow-strong: 0 16px 60px rgba(0, 0, 0, 0.4);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #007AFF 0%, #5856d6 100%);
    --gradient-surface: linear-gradient(145deg, rgba(28, 28, 30, 0.8) 0%, rgba(44, 44, 46, 0.6) 100%);
    --gradient-mesh: radial-gradient(circle at 20% 80%, rgba(0, 122, 255, 0.1) 0%, transparent 50%), 
                     radial-gradient(circle at 80% 20%, rgba(88, 86, 214, 0.1) 0%, transparent 50%);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    background-image: var(--gradient-mesh);
    min-height: 100vh;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-narrow {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Navigation */
.navbar {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    height: 80px;
}

.nav-brand a {
    display: inline-block;
    text-decoration: none;
}

.nav-brand img {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
}

.nav-menu a:hover {
    color: var(--text-primary);
    background: var(--glass-bg);
}

.btn-contact {
    background: var(--primary-color);
    color: white !important;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: var(--shadow-soft);
}

.btn-contact:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: transparent;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(233, 30, 99, 0.1) 100%);
    z-index: -1;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.875rem 2.5rem;
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.btn-white {
    background: white;
    color: var(--primary-color);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
}

.floating-card {
    position: absolute;
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: float 3s ease-in-out infinite;
    color: var(--text-light);
    width: 180px;
    text-align: center;
}

.card-icon {
    font-size: 2rem;
}

.card-1 {
    top: 110px;
    right: 20px;
    animation-delay: 0s;
}

.card-2 {
    top: 180px;
    right: 420px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 50px;
    right: 220px;
    animation-delay: 2s;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: transparent;
}

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

.service-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: var(--card-hover-bg);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Solutions Section */
.solutions {
    padding: 5rem 0;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s;
}

.solution-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.3);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.solution-badge {
    background: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.solution-card.featured .solution-badge {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.solution-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.solution-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.solution-features {
    list-style: none;
    margin-bottom: 2rem;
}

.solution-features li {
    padding: 0.5rem 0;
    color: var(--text-muted);
}

/* Cases Section */
.cases {
    padding: 5rem 0;
    background: transparent;
}

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

.case-card {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    border-color: rgba(255, 255, 255, 0.25);
}

.case-metric {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 0 30px rgba(0, 122, 255, 0.3);
}

.metric-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.025em;
}

.case-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 700;
}

.case-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.case-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    display: flex;
    flex-direction: column;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    min-width: 80px;
    text-align: center;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary-color);
    text-shadow: 0 0 20px rgba(0, 208, 132, 0.3);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Technology Section */
.technology {
    padding: 5rem 0;
    background: transparent;
}

.technology-intro {
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
}

.technology-intro p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.technology-intro .tech-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-stack-sections {
    margin: 3rem 0;
}

.tech-category {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.tech-category-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.75rem;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.8;
}

.tech-tag {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.375rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s;
    display: inline-block;
}

.tech-tag:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.tech-separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0.25rem;
}

.tech-break {
    width: 100%;
    height: 0.5rem;
}

.tech-philosophy {
    text-align: center;
    padding: 3rem;
    background: var(--glass-bg);
    border-radius: 1rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(24px);
    margin: 3rem 0;
}

.tech-philosophy h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.tech-philosophy p {
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.tech-footer-note {
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
}

.tech-footer-note p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Footer */
/* Contact Page Styles */
.contact-hero {
    padding: var(--space-3xl) 0 var(--space-2xl);
    background: transparent;
}

.contact-section-modern {
    padding: var(--space-2xl) 0 var(--space-3xl);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-3xl);
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form-modern {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-medium);
}

.form-header {
    margin-bottom: var(--space-2xl);
    text-align: center;
}

.form-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.form-header p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-secondary);
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 2px solid var(--glass-border);
    border-radius: 4px;
    background: var(--bg-tertiary);
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
    cursor: pointer;
}

.btn-submit-modern {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
    color: white;
    border: none;
    padding: 1rem var(--space-lg);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    margin-top: var(--space-md);
}

.btn-submit-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

/* Contact Info */
.contact-info-modern {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.info-header {
    text-align: center;
}

.info-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.info-header p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.info-card {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: var(--primary-color);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.info-content p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
}

.contact-direct {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.05), rgba(88, 86, 214, 0.05));
    border: 1px solid rgba(0, 122, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
}

.direct-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.direct-header p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    background: rgba(0, 122, 255, 0.1);
}

.email-link:hover {
    background: rgba(0, 122, 255, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .contact-info-modern {
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: calc(var(--space-3xl) - 1rem) 0 var(--space-xl);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .contact-form-modern {
        padding: var(--space-xl);
    }
    
    .info-cards {
        gap: var(--space-md);
    }
    
    .info-card {
        padding: var(--space-md);
    }
}

/* Careers Page Styles */
.benefits-section-modern {
    padding: var(--space-3xl) 0;
    background: var(--bg-primary);
}

.benefits-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.benefit-card-modern {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefit-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card-modern:hover::before {
    opacity: 1;
}

.benefit-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-color);
}

.benefit-icon-modern {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.benefit-card-modern:hover .benefit-icon-modern {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

.benefit-card-modern h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.benefit-card-modern p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Values Section Icons */
.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1), rgba(0, 210, 132, 0.1));
    border: 1px solid var(--glass-border);
}

.value-card:hover .value-icon {
    transform: scale(1.15);
    color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.2), rgba(0, 210, 132, 0.2));
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.2);
}

/* Positions Section Modern */
.positions-section-modern {
    padding: var(--space-3xl) 0;
    background: var(--bg-primary);
}

.position-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin: var(--space-2xl) 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: var(--space-sm) var(--space-lg);
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.position-card-modern {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.position-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.position-card-modern:hover::before {
    opacity: 1;
}

.position-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-color);
}

.position-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.position-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.position-level {
    background: rgba(0, 122, 255, 0.1);
    color: var(--primary-color);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--primary-color);
}

.position-card-modern h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.position-card-modern p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.position-skills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
}

.skill-tag {
    background: rgba(0, 210, 132, 0.1);
    color: var(--secondary-color);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 210, 132, 0.2);
}

.position-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-xl);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary-color);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.detail-item span:last-child {
    color: var(--text-primary);
    font-weight: 600;
}

.btn-apply-modern {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
}

.btn-apply-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

/* Culture Section Modern */
.culture-section-modern {
    padding: var(--space-3xl) 0;
    background: var(--bg-primary);
}

.culture-content-modern {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-3xl);
    margin-top: var(--space-2xl);
    align-items: start;
}

.culture-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.culture-highlight {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all 0.3s ease;
    border-left: 3px solid var(--primary-color);
}

.culture-highlight:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-soft);
    border-left-color: var(--secondary-color);
}

.culture-highlight h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.culture-highlight p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.culture-visual-modern {
    position: sticky;
    top: var(--space-2xl);
}

.gather-workspace {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.gather-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.workspace-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: var(--space-lg);
    color: white;
}

.workspace-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.workspace-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Legacy sections compatibility */
.careers-hero {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
}

.values-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.value-card {
    background: var(--bg-secondary);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-color);
}

.value-card h3 {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .culture-content-modern {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .culture-visual-modern {
        position: static;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .benefits-grid-modern {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .benefit-card-modern {
        padding: var(--space-lg);
    }
    
    .benefit-icon-modern {
        width: 56px;
        height: 56px;
    }
    
    .positions-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .position-filters {
        gap: var(--space-sm);
    }
    
    .filter-btn {
        padding: var(--space-xs) var(--space-md);
        font-size: 0.9rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .culture-info {
        gap: var(--space-lg);
    }
}

.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    padding: var(--space-3xl) 0 var(--space-lg);
    margin-top: var(--space-3xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--card-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .solutions-grid,
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-card.featured {
        transform: none;
    }
}

/* ===== MODERN FUTURISTIC STYLES ===== */

/* Modern Hero Section */
.hero-modern {
    padding: var(--space-3xl) 0 var(--space-2xl);
    min-height: 100vh;
    background: var(--bg-primary);
    background-image: var(--gradient-mesh);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-modern .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: var(--space-3xl);
}

.hero-modern .hero-badge {
    display: inline-block;
    margin-bottom: var(--space-lg);
}

.hero-modern .badge-text {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.hero-modern .badge-logo {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 24px 48px;
    border-radius: var(--radius-xl);
    height: 108px;
    width: auto;
    max-width: 540px;
    object-fit: contain;
    display: block;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hero-modern .hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-modern .hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    font-weight: 400;
}

.hero-metrics {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.metric-pill {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-xl);
    text-align: center;
    min-width: 120px;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.metric-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-top: 4px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.btn-modern-primary {
    background: var(--primary-color);
    color: white;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: var(--shadow-soft);
    border: 2px solid transparent;
    display: inline-block;
}

.btn-modern-primary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-modern-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: inline-block;
}

.btn-modern-secondary:hover {
    background: var(--glass-bg);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Feature Grid */
.hero-grid {
    margin-top: var(--space-3xl);
}

/* Feature Grid Simple - 2x2 Layout */
.feature-grid-simple {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* Feature Cards Balanced */
.feature-card-balanced {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card-balanced:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
    border-color: var(--secondary-color);
}

.feature-card-balanced .feature-visual {
    height: 160px;
    overflow: hidden;
    position: relative;
}

.feature-card-balanced .feature-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(99, 102, 241, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-balanced:hover .feature-visual img {
    transform: scale(1.05);
}

.feature-card-balanced:hover .feature-overlay {
    opacity: 1;
}

.feature-card-balanced .feature-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.feature-card-balanced h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.feature-card-balanced p {
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    flex: 1;
    line-height: 1.6;
    font-size: 1rem;
}

.feature-cta {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    font-size: 0.95rem;
}

.feature-cta:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .feature-grid-simple {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .feature-card-balanced .feature-content {
        padding: var(--space-md);
    }
}

.feature-card-large {
    grid-column: 1;
    grid-row: 1 / 3;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Tech Details Section */
.tech-details {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tech-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(0, 122, 255, 0.05);
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 122, 255, 0.1);
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(0, 122, 255, 0.08);
    border-color: rgba(0, 122, 255, 0.2);
    transform: translateX(4px);
}

.tech-icon {
    min-width: 2.25rem;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1), rgba(0, 210, 132, 0.05));
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 122, 255, 0.2);
    padding: 0.35rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.tech-icon svg {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 122, 255, 0.2));
    transition: transform 0.3s ease;
}

.tech-item:hover .tech-icon {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.15), rgba(0, 210, 132, 0.1));
    border-color: rgba(0, 210, 132, 0.3);
    transform: scale(1.05);
}

.tech-item:hover .tech-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 210, 132, 0.3));
}

.tech-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.tech-info strong {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
}

.tech-info span {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Agile Metrics */
.agile-metrics {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(0, 122, 255, 0.05);
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 122, 255, 0.1);
}

.metric-item {
    flex: 1;
    text-align: center;
    padding: 0.5rem;
}

.metric-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    background: linear-gradient(135deg, #007AFF, #ff3366);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sprint Timeline */
.sprint-timeline {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.sprint-week {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: linear-gradient(90deg, rgba(0, 122, 255, 0.1), transparent);
    border-radius: 0.5rem;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.sprint-week:hover {
    background: linear-gradient(90deg, rgba(0, 122, 255, 0.15), transparent);
    transform: translateX(4px);
    border-left-color: var(--secondary-color);
}

.sprint-week.highlighted {
    background: linear-gradient(90deg, rgba(0, 210, 132, 0.1), rgba(0, 122, 255, 0.05));
    border-left-color: var(--secondary-color);
}

.sprint-week.highlighted:hover {
    background: linear-gradient(90deg, rgba(0, 210, 132, 0.15), rgba(0, 122, 255, 0.1));
}

.week-number {
    min-width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}

.sprint-week.highlighted .week-number {
    background: var(--secondary-color);
}

.week-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.week-description {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.week-description p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.deploy-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.highlight-item {
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.week-task {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.week-subtasks {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    line-height: 1.2;
}

/* Deployment Process */
.deployment-process {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 210, 132, 0.05), rgba(0, 122, 255, 0.05));
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 210, 132, 0.1);
}

.deployment-process h5 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.deploy-steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.deploy-step {
    display: flex;
    align-items: center;
    padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    background: rgba(0, 210, 132, 0.05);
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 210, 132, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.deploy-step::before {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #ff3366, #007AFF);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(0, 210, 132, 0.4);
}

.deploy-step:hover {
    background: rgba(0, 210, 132, 0.08);
    transform: translateX(6px);
    border-color: rgba(0, 210, 132, 0.2);
}

.deploy-step:hover::before {
    width: 24px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #ff3366, #007AFF);
    box-shadow: 0 0 16px rgba(0, 210, 132, 0.6);
}

.step-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.step-info strong {
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 600;
}

.step-info span {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.3;
}

/* AI Benefits Section */
.ai-benefits {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ai-benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    background: linear-gradient(135deg, rgba(88, 86, 214, 0.05), rgba(0, 122, 255, 0.05));
    border-radius: 0.5rem;
    border: 1px solid rgba(88, 86, 214, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.ai-benefit-item::before {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #5856d6, #007AFF);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(88, 86, 214, 0.4);
}

.ai-benefit-item:hover {
    background: linear-gradient(135deg, rgba(88, 86, 214, 0.08), rgba(0, 122, 255, 0.08));
    transform: translateX(6px);
    border-color: rgba(88, 86, 214, 0.2);
}

.ai-benefit-item:hover::before {
    width: 24px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #5856d6, #ff3366);
    box-shadow: 0 0 16px rgba(0, 210, 132, 0.5);
}

.benefit-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.benefit-text strong {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.benefit-text span {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.3;
}

/* AI Tools Badges */
.ai-tools {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tool-badge {
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, rgba(88, 86, 214, 0.1), rgba(0, 210, 132, 0.1));
    border: 1px solid rgba(88, 86, 214, 0.2);
    border-radius: 1rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.2s ease;
}

.tool-badge:hover {
    background: linear-gradient(135deg, rgba(88, 86, 214, 0.15), rgba(0, 210, 132, 0.15));
    color: var(--text-primary);
    transform: scale(1.05);
    border-color: var(--accent-purple);
}

/* Integration Details */
.integration-details {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.integration-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(0, 210, 132, 0.05), rgba(0, 122, 255, 0.05));
    border-radius: 0.5rem;
    border-left: 3px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.integration-item:hover {
    background: linear-gradient(135deg, rgba(0, 210, 132, 0.08), rgba(0, 122, 255, 0.08));
    transform: translateX(4px);
    border-left-color: var(--primary-color);
}

.integration-item strong {
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 600;
}

.integration-item span {
    color: var(--text-secondary);
    font-size: 0.75rem;
    line-height: 1.3;
}

/* Integration Tools */
.integration-tools {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.integration-tool {
    padding: 0.25rem 0.5rem;
    background: linear-gradient(135deg, rgba(0, 210, 132, 0.1), rgba(0, 122, 255, 0.1));
    border: 1px solid rgba(0, 210, 132, 0.2);
    border-radius: 0.75rem;
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.2s ease;
}

.integration-tool:hover {
    background: linear-gradient(135deg, rgba(0, 210, 132, 0.15), rgba(0, 122, 255, 0.15));
    color: var(--text-primary);
    transform: scale(1.05);
    border-color: var(--secondary-color);
}

/* Maintenance Section */
.maintenance-principles {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.principle-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.05), rgba(0, 122, 255, 0.05));
    border-radius: 0.5rem;
    border-left: 3px solid var(--accent-pink);
    transition: all 0.3s ease;
}

.principle-item:hover {
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.08), rgba(0, 122, 255, 0.08));
    transform: translateX(4px);
    border-left-color: var(--primary-color);
}

.principle-item strong {
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 600;
}

.principle-item span {
    color: var(--text-secondary);
    font-size: 0.75rem;
    line-height: 1.3;
}

/* Maintenance Metrics */
.maintenance-metrics {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 51, 102, 0.05);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 149, 0, 0.1);
}

.metric {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.metric-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-pink);
    background: linear-gradient(135deg, #ff3366, #007AFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-desc {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Maintenance Tools */
.maintenance-tools {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.maintenance-tool {
    padding: 0.25rem 0.5rem;
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.1), rgba(0, 122, 255, 0.1));
    border: 1px solid rgba(255, 149, 0, 0.2);
    border-radius: 0.75rem;
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.2s ease;
}

.maintenance-tool:hover {
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.15), rgba(0, 122, 255, 0.15));
    color: var(--text-primary);
    transform: scale(1.05);
    border-color: var(--accent-pink);
}

/* Benefits List */
.benefits-list {
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.05), rgba(0, 210, 132, 0.05));
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefits-list h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-checklist {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-checklist li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    position: relative;
}

.feature-checklist li::before {
    content: '';
    position: absolute;
    left: 0.75rem;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #007AFF, #ff3366);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(0, 210, 132, 0.4);
}

.feature-checklist li:hover {
    background: rgba(0, 122, 255, 0.05);
    color: var(--text-primary);
    transform: translateX(8px);
}

.feature-checklist li:hover::before {
    width: 20px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #ff3366, #007AFF);
    box-shadow: 0 0 12px rgba(0, 122, 255, 0.6);
}

/* Strategy Transformation Section */
.strategy-transformation {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(88, 86, 214, 0.08), rgba(255, 51, 102, 0.05));
    border-radius: 1rem;
    border: 1px solid rgba(255, 149, 0, 0.1);
}

.strategy-transformation h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.transformation-flow {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.transformation-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0.75rem;
    border-left: 3px solid transparent;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02)),
                      linear-gradient(135deg, var(--primary-color), var(--accent-pink));
    background-origin: border-box;
    background-clip: content-box, border-box;
    transition: all 0.3s ease;
}

.transformation-step:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(88, 86, 214, 0.15);
}

.step-indicator {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-purple), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(88, 86, 214, 0.3);
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.step-content strong {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.step-content span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.feature-card-large:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-color);
}

.feature-card-medium {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Column 2: Entrega Ágil */
.feature-card-medium:nth-of-type(2) {
    grid-column: 2;
    grid-row: 1;
}

/* Column 3: IA como Acelerador */
.feature-card-medium:nth-of-type(3) {
    grid-column: 3;
    grid-row: 1;
}

.feature-card-medium:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--secondary-color);
}

.feature-card-small {
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 500px;
}

/* Column 2: Integrações */
.feature-card-small:nth-of-type(4) {
    grid-column: 2;
    grid-row: 2;
}

/* Column 3: Manutenibilidade */
.feature-card-small:nth-of-type(5) {
    grid-column: 3;
    grid-row: 2;
}

.feature-card-small:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: var(--accent-pink);
}

.feature-visual-small {
    width: 100%;
    height: 160px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.feature-visual-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card-small:hover .feature-visual-small img {
    transform: scale(1.05);
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(28, 28, 30, 0.9) 100%);
    pointer-events: none;
}

.feature-small-content {
    padding: var(--space-md);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    overflow: visible;
}

.feature-small-content h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.2;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.feature-small-content .feature-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* For cards without images, keep the original styling */
.feature-card-small.cloud {
    padding: var(--space-lg);
}

/* Tech Stack Badges */
.tech-stack {
    display: flex;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.tech-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Feature Visual Enhancements */
.feature-visual-large {
    position: relative;
    margin-top: var(--space-lg);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.tech-overlay {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
}

.data-point {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--glass-border);
}

.data-point .value {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.data-point .label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-tertiary);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Velocity Indicator */
.velocity-indicator {
    width: 60px;
    height: 4px;
    background: var(--bg-tertiary);
    border-radius: 2px;
    margin-bottom: var(--space-md);
    position: relative;
    overflow: hidden;
}

.velocity-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    width: 0;
    animation: fillBar 2s ease-out forwards;
}

.velocity-dot {
    position: absolute;
    top: -2px;
    right: 0;
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--secondary-color);
    animation: moveDot 2s ease-out forwards;
}

@keyframes fillBar {
    to { width: 85%; }
}

@keyframes moveDot {
    to { right: 15%; }
}

/* AI Circuit Design */
.ai-circuit {
    width: 60px;
    height: 40px;
    position: relative;
    margin-bottom: var(--space-md);
}

.circuit-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent, var(--accent-purple));
    border-radius: 1px;
}

.circuit-node {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--accent-purple);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
}

.circuit-pulse {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.7;
    }
}

/* Integration Lines */
.integration-lines {
    width: 50px;
    height: 50px;
    position: relative;
    margin-bottom: var(--space-md);
}

.line {
    position: absolute;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.line.horizontal {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.line.vertical {
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.connection-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--accent-pink);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 51, 102, 0.5);
}

/* Cloud Layers */
.cloud-layers {
    width: 50px;
    height: 30px;
    position: relative;
    margin-bottom: var(--space-md);
}

.cloud-layer {
    position: absolute;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
}

.cloud-layer.layer-1 {
    bottom: 0;
    left: 0;
    width: 30px;
    height: 8px;
    opacity: 0.6;
}

.cloud-layer.layer-2 {
    bottom: 6px;
    left: 10px;
    width: 35px;
    height: 10px;
    opacity: 0.8;
}

.cloud-layer.layer-3 {
    bottom: 12px;
    left: 5px;
    width: 25px;
    height: 8px;
    opacity: 1;
}

/* Feature Subtitle */
.feature-subtitle {
    display: block;
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-top: var(--space-xs);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== STRATEGIC CAPABILITIES SECTION ===== */

.capabilities-modern {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
    background-image: var(--gradient-mesh);
}

.section-header-modern {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-badge {
    display: inline-block;
    margin-bottom: var(--space-lg);
}

.section-badge span {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-pink);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.section-header-modern h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.capability-card {
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.capability-card.featured {
    background: var(--bg-tertiary);
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-color);
}

.capability-card.featured:hover {
    transform: translateY(-8px) scale(1.02);
}

.featured-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: linear-gradient(135deg, var(--accent-pink), var(--primary-color));
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.capability-header {
    margin-bottom: var(--space-lg);
}

.capability-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--space-md);
    position: relative;
}

.capability-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
    line-height: 1.2;
}

.capability-focus {
    display: block;
    font-size: 0.8rem;
    color: var(--accent-purple);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.capability-list li {
    display: flex;
    align-items: center;
    padding: var(--space-xs) 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.bullet {
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
    margin-right: var(--space-sm);
    flex-shrink: 0;
}

.capability-highlight {
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    text-align: center;
}

.capability-highlight span {
    font-size: 0.85rem;
    color: var(--accent-pink);
    font-weight: 600;
    font-style: italic;
}

/* Strategy Icon */
.strategy-layers {
    position: relative;
    width: 100%;
    height: 100%;
}

.strategy-layers .layer {
    position: absolute;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
}

.strategy-layers .layer-1 {
    bottom: 0;
    left: 0;
    width: 70%;
    height: 12px;
    opacity: 0.6;
}

.strategy-layers .layer-2 {
    bottom: 15px;
    left: 15%;
    width: 70%;
    height: 14px;
    opacity: 0.8;
}

.strategy-layers .layer-3 {
    bottom: 30px;
    left: 30%;
    width: 50%;
    height: 16px;
    opacity: 1;
}

/* Engineering Icon */
.code-blocks {
    position: relative;
    width: 100%;
    height: 100%;
}

.code-block {
    position: absolute;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 4px;
}

.code-block.block-1 {
    top: 5px;
    left: 5px;
    width: 35px;
    height: 8px;
}

.code-block.block-2 {
    top: 20px;
    left: 10px;
    width: 25px;
    height: 8px;
}

.code-block.block-3 {
    top: 35px;
    left: 5px;
    width: 40px;
    height: 8px;
}

/* Diagnóstico do negócio - Ícone de análise */
.diagnosis-blocks {
    position: relative;
    width: 100%;
    height: 100%;
}
.diagnosis-element {
    position: absolute;
    background: linear-gradient(135deg, var(--accent-purple), var(--primary-color));
    border-radius: 50%;
}
.diagnosis-element.element-1 {
    top: 8px;
    left: 8px;
    width: 12px;
    height: 12px;
}
.diagnosis-element.element-2 {
    top: 15px;
    right: 8px;
    width: 8px;
    height: 8px;
}
.diagnosis-element.element-3 {
    bottom: 8px;
    left: 12px;
    width: 10px;
    height: 10px;
}
.diagnosis-connection {
    position: absolute;
    background: linear-gradient(90deg, var(--accent-purple), transparent);
    height: 2px;
}
.diagnosis-connection.line-1 {
    top: 14px;
    left: 20px;
    width: 15px;
}
.diagnosis-connection.line-2 {
    top: 25px;
    left: 8px;
    width: 25px;
    transform: rotate(45deg);
}

/* Arquitetura e planejamento - Ícone de blueprint */
.architecture-blocks {
    position: relative;
    width: 100%;
    height: 100%;
}
.arch-element {
    position: absolute;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}
.arch-element.foundation {
    bottom: 5px;
    left: 5px;
    width: 40px;
    height: 6px;
}
.arch-element.pillar-1 {
    bottom: 11px;
    left: 8px;
    width: 6px;
    height: 20px;
}
.arch-element.pillar-2 {
    bottom: 11px;
    right: 12px;
    width: 6px;
    height: 20px;
}
.arch-element.roof {
    top: 8px;
    left: 5px;
    width: 40px;
    height: 6px;
}
.arch-blueprint {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 8px;
    height: 8px;
    background: var(--accent-pink);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Evolução contínua - Ícone de ciclo */
.evolution-blocks {
    position: relative;
    width: 100%;
    height: 100%;
}
.evolution-element {
    position: absolute;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-pink));
    border-radius: 50%;
}
.evolution-element.step-1 {
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
}
.evolution-element.step-2 {
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
}
.evolution-element.step-3 {
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
}
.evolution-element.step-4 {
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
}
.evolution-arrow {
    position: absolute;
    background: var(--accent-pink);
    height: 2px;
    animation: pulse 2s ease-in-out infinite;
}
.evolution-arrow.arrow-1 {
    top: 12px;
    left: 60%;
    width: 12px;
    transform: rotate(45deg);
}
.evolution-arrow.arrow-2 {
    bottom: 12px;
    right: 15px;
    width: 12px;
    transform: rotate(135deg);
}

/* Agility Icon */
.sprint-cycle {
    position: relative;
    width: 100%;
    height: 100%;
}

.cycle-step {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent-pink);
    border-radius: 50%;
}

.cycle-step.step-1 {
    top: 10px;
    left: 10px;
}

.cycle-step.step-2 {
    top: 10px;
    right: 10px;
}

.cycle-step.step-3 {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.cycle-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-right: none;
    border-bottom: none;
    border-radius: 50%;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Low Code Icon */
.automation-flow {
    position: relative;
    width: 100%;
    height: 100%;
}

.flow-node {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.flow-node.node-1 {
    top: 15px;
    left: 5px;
}

.flow-node.node-2 {
    top: 25px;
    left: 25px;
}

.flow-node.node-3 {
    top: 15px;
    right: 5px;
}

.flow-connection {
    position: absolute;
    top: 20px;
    left: 15px;
    right: 15px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color), var(--secondary-color));
    border-radius: 1px;
}

/* Experience Icon */
.user-journey {
    position: relative;
    width: 100%;
    height: 100%;
}

.journey-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-purple);
    border-radius: 50%;
}

.journey-point.point-1 {
    top: 20px;
    left: 10px;
}

.journey-point.point-2 {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.journey-point.point-3 {
    top: 20px;
    right: 10px;
}

.journey-path {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    height: 2px;
    background: var(--accent-purple);
    border-radius: 1px;
    clip-path: polygon(0 0, 30% 0, 40% 100%, 60% 100%, 70% 0, 100% 0, 100% 100%, 0 100%);
}

/* Intelligence Icon */
.data-nodes {
    position: relative;
    width: 100%;
    height: 100%;
}

.data-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.data-node.node-1 {
    top: 5px;
    left: 5px;
    animation-delay: 0s;
}

.data-node.node-2 {
    top: 25px;
    right: 5px;
    animation-delay: 0.7s;
}

.data-node.node-3 {
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.4s;
}

.data-connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(45deg, var(--primary-color), transparent);
}

.data-connection.connection-1 {
    top: 12px;
    left: 17px;
    width: 25px;
    transform: rotate(30deg);
}

.data-connection.connection-2 {
    top: 30px;
    left: 20px;
    width: 20px;
    transform: rotate(-45deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .capability-card.featured {
        transform: none;
    }
    
    .capability-card.featured:hover {
        transform: translateY(-8px);
    }
}

/* ===== NEW SECTIONS STYLES ===== */

/* About Section */
.about-modern {
    padding: var(--space-3xl) 0;
    background: var(--bg-primary);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* How We Work - Pillars */
.how-we-work-modern {
    padding: var(--space-3xl) 0;
    background: var(--bg-primary);
    background-image: var(--gradient-mesh);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.pillar-card {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.pillar-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.pillar-icon {
    width: 50px;
    height: 50px;
    margin-right: var(--space-md);
    position: relative;
}

.pillar-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.pillar-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Solutions Modern */
.solutions-modern {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
}

.solutions-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.solution-card-modern {
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
}

.solution-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--secondary-color);
}

.solution-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.solution-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.solution-card-modern:hover .solution-image {
    transform: scale(1.05);
}

.solution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
}

.solution-content {
    padding: var(--space-xl);
}

.solution-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.solution-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.solution-icon {
    width: 50px;
    height: 50px;
    margin-right: var(--space-md);
    position: relative;
}

.solution-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.solution-card-modern .solution-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Solution Icons */
.system-layers {
    position: relative;
    width: 100%;
    height: 100%;
}

.sys-layer {
    position: absolute;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
}

.sys-layer.layer-1 {
    bottom: 5px;
    left: 5px;
    width: 30px;
    height: 8px;
    opacity: 0.6;
}

.sys-layer.layer-2 {
    bottom: 15px;
    left: 10px;
    width: 25px;
    height: 8px;
    opacity: 0.8;
}

.sys-layer.layer-3 {
    bottom: 25px;
    left: 15px;
    width: 20px;
    height: 8px;
    opacity: 1;
}

.platform-devices {
    position: relative;
    width: 100%;
    height: 100%;
}

.device {
    position: absolute;
    background: var(--secondary-color);
    border-radius: 2px;
}

.device.desktop {
    bottom: 5px;
    left: 5px;
    width: 25px;
    height: 15px;
}

.device.mobile {
    bottom: 10px;
    right: 10px;
    width: 8px;
    height: 15px;
    border-radius: 3px;
}

.device.tablet {
    bottom: 25px;
    left: 15px;
    width: 12px;
    height: 18px;
    border-radius: 2px;
}

.arch-diagram {
    position: relative;
    width: 100%;
    height: 100%;
}

.arch-block {
    position: absolute;
    background: var(--accent-pink);
    border-radius: 4px;
}

.arch-block.block-1 {
    top: 10px;
    left: 5px;
    width: 15px;
    height: 15px;
}

.arch-block.block-2 {
    top: 10px;
    right: 5px;
    width: 15px;
    height: 15px;
}

.arch-connection {
    position: absolute;
    top: 17px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--primary-color);
}

.arch-evolution {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.consulting-flow {
    position: relative;
    width: 100%;
    height: 100%;
}

.flow-step {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-purple);
    border-radius: 50%;
}

.flow-step.step-1 {
    top: 15px;
    left: 5px;
}

.flow-step.step-2 {
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.flow-step.step-3 {
    top: 15px;
    right: 5px;
}

.consulting-flow .flow-arrow {
    position: absolute;
    top: 30px;
    left: 15px;
    right: 15px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-purple), var(--primary-color), var(--accent-purple));
    clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
}

/* Technology Section */
.technology-modern {
    padding: var(--space-3xl) 0;
    background: var(--bg-primary);
}

.technology-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.technology-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.technology-content p:last-child {
    margin-bottom: 0;
}

/* CTA Modern */
.cta-content-modern {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content-modern h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: var(--space-xl);
}

.btn-cta-modern {
    background: var(--primary-color);
    color: white;
    padding: var(--space-md) var(--space-2xl);
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: var(--shadow-soft);
    display: inline-block;
}

.btn-cta-modern:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Responsive for New Sections */
@media (max-width: 768px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .solutions-grid-modern {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .pillar-header,
    .solution-header {
        flex-direction: column;
        text-align: center;
    }
    
    .pillar-icon,
    .solution-icon {
        margin-right: 0;
        margin-bottom: var(--space-sm);
    }
}

.feature-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

.feature-content p strong {
    color: var(--text-primary);
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-visual {
    margin-top: var(--space-lg);
}

.feature-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    object-fit: cover;
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.feature-visual,
.feature-visual-large {
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-md);
}

.feature-visual img,
.feature-visual-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    position: relative;
    z-index: 1;
}

.feature-visual-large img {
    object-position: center;
    filter: brightness(0.9);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.feature-visual-large:hover img {
    filter: brightness(1);
    transform: scale(1.02);
}

/* Responsive Design for Modern Hero */
@media (max-width: 768px) {
    .hero-modern {
        padding: var(--space-2xl) 0 var(--space-xl);
        min-height: 90vh;
    }
    
    .hero-metrics {
        gap: var(--space-sm);
    }
    
    .metric-pill {
        min-width: 100px;
        padding: var(--space-sm) var(--space-md);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
    
    .btn-modern-primary,
    .btn-modern-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .feature-grid-modern {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: var(--space-md);
    }
    
    .feature-card-large {
        grid-column: 1;
        grid-row: auto;
        min-height: 200px;
    }
}

/* Target Audience Section */
.target-audience-modern {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.target-audience-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 122, 255, 0.05) 0%, transparent 60%),
                radial-gradient(circle at 70% 80%, rgba(0, 208, 132, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.audience-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin: var(--space-2xl) 0;
    position: relative;
    z-index: 1;
}

.audience-card-modern {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.audience-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.audience-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(255, 255, 255, 0.2);
}

.audience-card-modern:hover::before {
    opacity: 1;
}

.audience-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.audience-icon {
    width: 60px;
    height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audience-card-modern h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.audience-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Growth Chart Icon */
.growth-chart {
    width: 100%;
    height: 100%;
    position: relative;
}

.growth-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 40px;
    width: 40px;
    margin: 10px;
}

.growth-bar {
    width: 6px;
    background: linear-gradient(to top, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    animation: growthPulse 2s ease-in-out infinite;
}

.growth-bar.bar-1 { height: 60%; animation-delay: 0s; }
.growth-bar.bar-2 { height: 75%; animation-delay: 0.2s; }
.growth-bar.bar-3 { height: 90%; animation-delay: 0.4s; }
.growth-bar.bar-4 { height: 100%; animation-delay: 0.6s; }

.growth-trend {
    position: absolute;
    bottom: 5px;
    left: 5px;
    right: 5px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    opacity: 0.6;
    border-radius: 1px;
}

/* Complexity Network Icon */
.complexity-network {
    width: 100%;
    height: 100%;
    position: relative;
}

.complexity-nodes {
    position: relative;
    width: 100%;
    height: 100%;
}

.comp-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent-purple);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.comp-node.node-1 { top: 20%; left: 20%; }
.comp-node.node-2 { top: 20%; right: 20%; }
.comp-node.node-3 { bottom: 20%; left: 30%; }
.comp-node.node-4 { bottom: 20%; right: 30%; }

.complexity-connections {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 45%, rgba(88, 86, 214, 0.3) 47%, rgba(88, 86, 214, 0.3) 53%, transparent 55%),
        linear-gradient(-45deg, transparent 45%, rgba(88, 86, 214, 0.3) 47%, rgba(88, 86, 214, 0.3) 53%, transparent 55%);
    opacity: 0.6;
}

/* Reliability Shield Icon */
.reliability-shield {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-layers {
    position: relative;
    width: 40px;
    height: 48px;
}

.shield-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-secondary), var(--bg-secondary)) padding-box,
                linear-gradient(45deg, var(--primary-color), var(--secondary-color)) border-box;
}

.shield-layer.layer-1 {
    opacity: 0.3;
    transform: scale(1.1);
}

.shield-layer.layer-2 {
    opacity: 0.6;
    transform: scale(1.05);
}

.shield-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 24px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.8;
}

.shield-check {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 4px;
    border: 2px solid var(--text-primary);
    border-top: none;
    border-right: none;
    transform: translate(-50%, -60%) rotate(-45deg);
}

/* Vision Scope Icon */
.vision-scope {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scope-rings {
    position: relative;
    width: 50px;
    height: 50px;
}

.scope-ring {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    border-color: transparent var(--accent-pink) transparent transparent;
}

.scope-ring.ring-1 {
    width: 50px;
    height: 50px;
    animation: scopeRotate 4s linear infinite;
}

.scope-ring.ring-2 {
    width: 35px;
    height: 35px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: scopeRotate 3s linear infinite reverse;
}

.scope-ring.ring-3 {
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: scopeRotate 2s linear infinite;
}

.scope-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--accent-pink);
    border-radius: 50%;
    animation: scopePulse 2s ease-in-out infinite;
}

/* Audience CTA */
.audience-cta-modern {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-top: var(--space-2xl);
    text-align: center;
    position: relative;
    z-index: 1;
}

.audience-quote p {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Animations */
@keyframes growthPulse {
    0%, 100% { opacity: 0.7; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.1); }
}

@keyframes scopeRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes scopePulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

/* Additional spacing adjustments for features */
.feature-card-medium .feature-content {
    padding: var(--space-md);
    flex: 1;
}

.feature-visual {
    margin-top: var(--space-md);
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 200px;
}

.feature-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Small card content - no scroll needed */
.integration-details,
.maintenance-principles {
    overflow: visible;
}

/* Feature grid responsive improvements */
@media (max-width: 1024px) {
    .feature-grid-modern {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }
    
    .feature-card-large {
        grid-column: 1 / 3;
        grid-row: 1;
    }
    
    .feature-card-medium:nth-of-type(2) {
        grid-column: 1;
        grid-row: 2;
    }
    
    .feature-card-medium:nth-of-type(3) {
        grid-column: 2;
        grid-row: 2;
    }
    
    .feature-card-small:nth-of-type(4) {
        grid-column: 1;
        grid-row: 3;
    }
    
    .feature-card-small:nth-of-type(5) {
        grid-column: 2;
        grid-row: 3;
    }
}

/* Responsive Design for Target Audience */
@media (max-width: 768px) {
    .audience-grid-modern {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .audience-card-modern {
        padding: var(--space-lg);
    }
    
    .audience-quote p {
        font-size: 1.1rem;
    }
    
    .feature-grid-modern {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: var(--space-md);
    }
    
    .feature-card-large {
        grid-column: 1;
        grid-row: auto;
    }
    
    .feature-card-medium:nth-of-type(2),
    .feature-card-medium:nth-of-type(3) {
        grid-column: 1;
        grid-row: auto;
    }
    
    .feature-card-small:nth-of-type(4),
    .feature-card-small:nth-of-type(5) {
        grid-column: 1;
        grid-row: auto;
    }
    
    .feature-card-small {
        min-height: 450px;
    }
    
    .feature-visual-small {
        height: 140px;
    }
}

/* Carreiras - Modern Apply Form Styles */
.apply-section-modern {
    padding: var(--space-3xl) 0;
    background: var(--bg-primary);
}

.apply-grid-modern {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-3xl);
    align-items: flex-start;
}

.apply-form-modern {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-medium);
}

.apply-header-modern {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.apply-badge-modern {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.apply-form-modern h2 {
    font-size: var(--text-2xl);
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.apply-form-modern .subtitle {
    color: var(--text-secondary);
    font-size: var(--text-base);
}

.apply-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.apply-form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.apply-form-group.full-width {
    grid-column: 1 / -1;
}

.apply-form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: var(--text-sm);
}

.apply-form-group input,
.apply-form-group select,
.apply-form-group textarea {
    padding: var(--space-md);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: var(--text-base);
    transition: all 0.3s ease;
}

.apply-form-group input:focus,
.apply-form-group select:focus,
.apply-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(88, 86, 214, 0.1);
}

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

.apply-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
    color: white;
    border: none;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apply-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

.apply-info-modern {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    height: fit-content;
    position: sticky;
    top: var(--space-xl);
}

.apply-info-modern h3 {
    font-size: var(--text-xl);
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.apply-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.apply-benefit {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.apply-benefit-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.apply-benefit span {
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

.apply-contact {
    padding-top: var(--space-lg);
    border-top: 1px solid var(--glass-border);
}

.apply-contact h4 {
    font-size: var(--text-lg);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.apply-contact p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    margin-bottom: var(--space-md);
}

.apply-contact a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.apply-contact a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .apply-grid-modern {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .apply-info-modern {
        position: relative;
        top: unset;
    }
}

@media (max-width: 768px) {
    .apply-form-grid {
        grid-template-columns: 1fr;
    }
}

/* Subtle Logo Branding Elements */
.subtle-logo-watermark {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}

.section-brand-accent::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: url('img/03 Logo Nooma Branco.png') no-repeat center;
    background-size: contain;
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

.hero-badge {
    position: relative;
}

.badge-logo {
    height: 24px;
    opacity: 0.9;
    filter: brightness(1.1);
}