/* ==========================================================================
   NEBULOSA GROWTH - LANDING PAGE COMERCIAL (APRESENTAÇÃO DE ELITE)
   Identidade Visual: Brandbook Oficial da Nebulosa
   ========================================================================== */

:root {
    /* Cores Oficiais */
    --navy: #0A192F;
    --royal: #1D4ED8;
    --royal-light: #3B82F6;
    --white: #FFFFFF;
    --black: #020617;
    --gray-dark: #64748B;
    --gray-light: #94A3B8;
    --gray-ultra-light: #E2E8F0;
    
    /* Gradientes & Glows */
    --primary-gradient: linear-gradient(135deg, var(--royal) 0%, var(--royal-light) 100%);
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glow-color: rgba(29, 78, 216, 0.5);
    
    /* Tipografia */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transições */
    --transition-fast: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ================= RESET & BASICS ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ================= BACKGROUNDS (SPACE THEME) ================= */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: 50px 50px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    z-index: -2;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.bg-glow {
    position: fixed;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    height: 80vh;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.12) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
    filter: blur(100px);
    animation: pulse 12s infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.4; transform: translateX(-50%) scale(1); }
    100% { opacity: 0.7; transform: translateX(-50%) scale(1.1); }
}

/* ================= CONTAINER & UTILITIES ================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    position: relative;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-2 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 24px; }
.mb-6 { margin-bottom: 36px; }
.mb-8 { margin-bottom: 48px; }

/* ================= TYPOGRAPHY ================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.highlight-color {
    color: var(--royal-light);
}

/* ================= GLASS CARDS (COMMON LAYOUT) ================= */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: var(--transition-fast);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 15px 35px rgba(29, 78, 216, 0.15);
}

/* ================= HEADER & NAVBAR ================= */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 24px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 36px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.05em;
    color: var(--white);
    margin-top: 2px;
    text-transform: lowercase;
}

.logo-text span {
    color: var(--royal-light);
}

/* ================= BUTTONS (STATIC VISUAL) ================= */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    background: var(--primary-gradient);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.btn-glow {
    position: relative;
    box-shadow: 0 0 15px rgba(29, 78, 216, 0.3);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* ================= HERO SECTION ================= */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    background: radial-gradient(circle at top, rgba(29, 78, 216, 0.08) 0%, transparent 50%);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -0.03em;
    margin-bottom: 48px;
    max-width: 900px;
    margin-left: auto; margin-right: auto;
}

.hero-cards-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-card {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 140px;
}

.hero-card .number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--royal-light);
    margin-bottom: 8px;
}

.hero-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.hero-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
    margin-top: 8px;
}

.hero-card-separator {
    border-left: 2px solid var(--royal-light);
    border-radius: 0 16px 16px 0;
}

/* ================= SECTIONS LAYOUT ================= */
.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--white);
}

.section-header p {
    color: var(--gray-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 56px auto;
}

/* ================= VISUAL REFINE FOR COMERCIAL CALL PITCH ================= */

/* 1. Map Section Grid */
.map-section-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.map-stats-subgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}

.map-stat-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 24px;
    text-align: left;
}

.map-stat-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
}

.text-highlight {
    color: var(--royal-light);
}

/* Map SVG Styling */
.map-container-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.map-watermark {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 7.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    pointer-events: none;
    z-index: 0;
}

.brazil-map-container {
    position: relative;
    width: 100%;
    z-index: 1;
}

.map-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(29, 78, 216, 0.1));
}

.brazil-state {
    transition: var(--transition-fast);
    cursor: default;
}

.brazil-state:hover {
    fill: rgba(29, 78, 216, 0.3);
    stroke: rgba(96, 165, 250, 0.4);
}

/* Map Pins (Favicon style - Blue circle with white logo) */
.map-pin {
    position: absolute;
    width: 22px;
    height: 22px;
    background: var(--royal);
    border: 1.5px solid var(--royal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
    transform: translate(-50%, -50%);
    z-index: 5;
    transition: var(--transition-fast);
}

.map-pin img {
    width: 11px;
    height: 11px;
    opacity: 0.95;
    pointer-events: none;
}

.map-pin:hover {
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.9), 0 0 25px rgba(29, 78, 216, 0.5);
    z-index: 10;
}

.map-pin::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    border: 1px solid var(--royal-light);
    animation: pinRadar 2.5s infinite;
}

@keyframes pinRadar {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.4); opacity: 0; }
}

/* 2. Mission Section (Enlarged and Enhanced for Pitch Impact) */
.mission-section {
    padding: 160px 0;
    background: radial-gradient(circle at center, rgba(29, 78, 216, 0.08) 0%, transparent 60%);
}

.mission-small-title {
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-light);
    margin-bottom: 12px;
    font-weight: 700;
}

.mission-vender-title {
    font-size: clamp(6rem, 16vw, 15rem);
    font-weight: 950;
    background: linear-gradient(180deg, #FFFFFF 30%, var(--royal-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 0.8;
    letter-spacing: -0.05em;
    margin-bottom: 32px;
    font-family: var(--font-heading);
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.2));
}

.mission-sub-desc {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--white);
    font-weight: 400;
    max-width: 850px;
    margin: 0 auto;
}

.mission-sub-desc span {
    font-weight: 700;
}

/* 3. Phases Grid (Timeline + Gauge Card like Print 2) */
.phases-container-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.phases-timeline-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--gray-light);
    cursor: pointer;
    transition: var(--transition-fast);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.timeline-item .bullet {
    color: var(--gray-dark);
    font-weight: 800;
    transition: var(--transition-fast);
}

.timeline-item.active {
    color: var(--royal-light);
    border-bottom-color: rgba(59, 130, 246, 0.3);
}

.timeline-item.active .bullet {
    color: var(--royal-light);
    transform: translateX(4px);
}

/* Gauge Slide Card */
.gauge-slide-card {
    padding: 48px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gauge-wrapper {
    width: 100%;
    max-width: 250px;
    margin-bottom: 24px;
}

.gauge-svg {
    width: 100%;
    height: auto;
}

.gauge-slide-content {
    min-height: 140px;
}

.gauge-phase-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray-light);
    margin-bottom: 12px;
}

.gauge-slide-title {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.gauge-slide-desc {
    color: var(--gray-light);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
}

.gauge-controls {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 16px;
}

.gauge-arrow-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    width: 40px; height: 40px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.gauge-arrow-btn:hover {
    background: var(--royal);
    border-color: var(--royal-light);
    color: var(--white);
    transform: scale(1.05);
}

.gauge-dots {
    display: flex;
    gap: 12px;
}

.gauge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.gauge-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* 4. Chart Timeline Section (Visual chart path like Print 3) */
.chart-timeline-section {
    padding: 100px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: linear-gradient(180deg, rgba(10, 25, 47, 0.2), transparent);
}

.chart-main-title {
    font-size: 2.2rem;
    margin-bottom: 56px;
}

.chart-wrapper {
    position: relative;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
}

.scale-chart-svg {
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.15));
}
.scale-chart-svg text {
    font-family: var(--font-heading), sans-serif;
    user-select: none;
}
.svg-roi-gauge {
    cursor: pointer;
    pointer-events: all;
}
.svg-roi-gauge rect {
    transition: stroke 0.3s, filter 0.3s, fill 0.3s;
}
.svg-roi-gauge:hover rect {
    stroke: rgba(255, 255, 255, 0.3);
    fill: #0e2447;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.4));
}

/* 5. Profiles Section (Fixed alignments & layout spacing) */
.profiles-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, rgba(10, 25, 47, 0.1) 0%, transparent 60%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.icon-wrapper {
    width: 64px; height: 64px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-fast);
}

.service-icon {
    font-size: 2rem;
    color: var(--royal-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card:hover .icon-wrapper {
    background: var(--royal);
    border-color: var(--royal-light);
    transform: scale(1.05);
}

.service-card:hover .service-icon {
    color: var(--white);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--white);
}

.service-card p {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* Funnel Section */
.funnel-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(10, 25, 47, 0.2), transparent);
}

.funnel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.funnel-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.funnel-card .step-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(29, 78, 216, 0.1);
    border: 1px solid rgba(29, 78, 216, 0.2);
    color: var(--royal-light);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.funnel-card h3 {
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 12px;
}

.funnel-card .main-desc {
    font-size: 0.95rem;
    color: var(--gray-ultra-light);
    font-weight: 600;
    margin-bottom: 12px;
}

.funnel-card .sub-desc {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.6;
}

/* 6. Communication / Acompanhamento Section (Print 4 style) */
.communication-section {
    padding: 100px 0;
    background: radial-gradient(circle at bottom, rgba(10, 25, 47, 0.2) 0%, transparent 60%);
}

.communication-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.comm-card {
    padding: 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.comm-icon-box {
    width: 56px; height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.comm-icon-box.whatsapp-icon {
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
    color: #4ADE80;
}

.comm-icon-box.meet-icon {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--royal-light);
}

.comm-tag {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.text-green { color: #4ADE80; }
.text-royal-light { color: var(--royal-light); }

.comm-card h3 {
    font-size: 1.45rem;
    margin-bottom: 12px;
    color: var(--white);
}

.comm-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ================= COMPARISON SECTION ================= */
.comparison-section {
    background-color: rgba(2, 6, 23, 0.4);
    border-top: 1px solid var(--glass-border);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.comparison-info h2 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.comparison-info p {
    color: var(--gray-light);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.total-inhouse-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.15);
    padding: 24px;
    border-radius: 12px;
}

.total-inhouse-box i {
    font-size: 2.2rem;
    color: #EF4444;
}

.total-inhouse-box h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.total-inhouse-box p {
    font-size: 1.8rem;
    font-weight: 800;
    color: #EF4444;
    margin: 0;
}

.table-wrapper {
    overflow-x: auto;
    padding: 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th, .comparison-table td {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.comparison-table th {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-dark);
}

.comparison-table th.highlight-col {
    color: var(--royal-light);
}

.comparison-table td.role-name {
    font-weight: 500;
    color: var(--white);
}

.comparison-table td.role-cost {
    font-family: var(--font-heading);
    color: var(--gray-light);
}

.comparison-table td.highlight-cell {
    background: rgba(29, 78, 216, 0.03);
    border-left: 2px solid var(--royal-light);
    color: var(--gray-ultra-light);
    font-size: 0.95rem;
    line-height: 1.6;
    vertical-align: middle;
}

.comparison-table td.highlight-cell i {
    color: var(--royal-light);
    font-size: 1.3rem;
    margin-right: 8px;
    vertical-align: middle;
}

/* ================= MODEL & CTA ================= */
.model-section {
    background: radial-gradient(circle at center, rgba(29, 78, 216, 0.05) 0%, transparent 60%);
}

.model-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 64px 48px;
}

.model-card .sub {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--royal-light);
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.model-card h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.2;
}

/* ================= FOOTER ================= */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 48px 0;
    background-color: #020617;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer p {
    color: var(--gray-dark);
    font-size: 0.9rem;
}

/* ================= SCROLL ARROWS ================= */
.scroll-arrow-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 56px;
    margin-bottom: -40px;
    position: relative;
    z-index: 10;
}

.scroll-arrow-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.scroll-arrow-svg {
    height: 64px;
    width: auto;
    color: rgba(255, 255, 255, 0.2);
    transition: color 0.3s, transform 0.3s, filter 0.3s;
    animation: scrollBounce 2s infinite ease-in-out;
}

.scroll-arrow-link:hover .scroll-arrow-svg {
    color: rgba(255, 255, 255, 0.6);
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* ================= NEW HIRING SECTION ================= */
.hiring-section {
    padding: 120px 0;
    background: radial-gradient(circle at 50% 0%, rgba(29, 78, 216, 0.05) 0%, transparent 60%);
    border-top: 1px solid var(--glass-border);
    position: relative;
}

.hiring-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.hiring-card-service {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition-slow);
}

.hiring-card-service:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.hiring-icon-container {
    color: var(--royal-light);
    font-size: 2.2rem;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.hiring-card-service h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--white);
}

.hiring-card-service p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.6;
}

/* ================= RESPONSIVE ADJUSTMENTS ================= */
@media (max-width: 1024px) {
    .map-section-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .phases-container-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .funnel-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hiring-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .navbar {
        padding: 16px 0;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .hero {
        padding-top: 140px;
        padding-bottom: 60px;
    }
    
    .hero-cards-grid {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-card-separator {
        border-left: none;
        border-top: 2px solid var(--royal-light);
        border-radius: 0 0 16px 16px;
    }
    
    .mission-section {
        padding: 100px 0;
    }
    
    .mission-vender-title {
        font-size: 4.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .funnel-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .communication-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .chart-x-labels-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .chart-badge-gauge {
        display: none;
    }
    
    .hiring-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 500px;
        margin: 0 auto;
    }

    .hiring-card-service {
        padding: 28px 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}
