﻿/* ============================================
   ALFA INTÉRIM — Style Premium
   ============================================ */

:root {
  --orange: #E8521A;
  --orange-light: #F47742;
  --orange-dark: #C4410F;
  --navy: #1B3A4B;
  --navy-light: #2A5570;
  --navy-dark: #0F2330;
  --white: #FFFFFF;
  --gray-50: #F8F9FA;
  --gray-100: #F0F2F4;
  --gray-200: #E2E6EA;
  --gray-400: #9CA3AF;
  --gray-600: #6B7280;
  --gray-800: #2C3E50;
  --text: #1E293B;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 48px rgba(0,0,0,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1,h2,h3,h4 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

.section-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1rem; color: var(--navy); }
.section-sub { color: var(--gray-600); font-size: 1.05rem; max-width: 580px; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-sub { margin: 0 auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px;
  border-radius: 50px; font-weight: 600; font-size: 0.95rem; cursor: pointer;
  transition: var(--transition); border: 2px solid transparent; white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 4px 16px rgba(232,82,26,0.35); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,82,26,0.45); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

/* HEADER */
#header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: var(--transition); }
.header-top { background: rgba(27,58,75,0.0); transition: var(--transition); }
#header.scrolled .header-top { background: var(--navy); box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 32px; }
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-svg { width: 44px; height: 44px; }
.logo-text { color: var(--white); }
.logo-text strong { display: block; font-size: 1.1rem; letter-spacing: 0.05em; }
.logo-text span { font-size: 0.65rem; letter-spacing: 0.08em; opacity: 0.8; text-transform: uppercase; }
nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
nav a { color: rgba(255,255,255,0.88); font-size: 0.875rem; font-weight: 500; padding: 8px 14px; border-radius: 8px; transition: var(--transition); }
nav a:hover, nav a.active { color: var(--white); background: rgba(255,255,255,0.1); }
.header-cta { display: flex; gap: 10px; flex-shrink: 0; }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; background: var(--navy); padding: 16px 24px 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; color: rgba(255,255,255,0.88); font-size: 1rem; font-weight: 500; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu .mobile-cta { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--navy-dark); }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0F2330 0%, #1B3A4B 40%, #2A5570 70%, #1B3A4B 100%); }
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(232,82,26,0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(232,82,26,0.08) 0%, transparent 50%);
}
.hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-shapes::before {
  content: ''; position: absolute; top: -20%; right: -10%; width: 600px; height: 600px;
  background: rgba(232,82,26,0.06); border-radius: 50%; border: 1px solid rgba(232,82,26,0.15);
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,82,26,0.15); border: 1px solid rgba(232,82,26,0.3);
  color: #F47742; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 8px 16px; border-radius: 50px; margin-bottom: 1.5rem;
}
.hero-badge::before { content: ''; width: 8px; height: 8px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(1.3); } }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-sub { color: rgba(255,255,255,0.75); font-size: 1.15rem; max-width: 560px; margin-bottom: 2.5rem; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.15); }
.hero-stat-item strong { display: block; font-size: 2rem; font-weight: 800; color: var(--orange); line-height: 1; }
.hero-stat-item span { font-size: 0.8rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.06em; }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.4); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); animation: scrollAnim 1.8s ease-in-out infinite; }
@keyframes scrollAnim { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* STATS BAR */
.stats-bar { background: var(--orange); padding: 0; }
.stats-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 28px 20px; border-right: 1px solid rgba(255,255,255,0.2); color: var(--white); }
.stat-item:last-child { border-right: none; }
.stat-item strong { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; line-height: 1; }
.stat-item span { font-size: 0.8rem; opacity: 0.85; margin-top: 4px; text-align: center; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-main { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.3); font-size: 4rem; }
.about-image { position: relative; }
.about-badge-float { position: absolute; bottom: -20px; right: -20px; background: var(--orange); color: var(--white); padding: 20px 24px; border-radius: var(--radius); box-shadow: var(--shadow-lg); text-align: center; }
.about-badge-float strong { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.about-badge-float span { font-size: 0.75rem; opacity: 0.9; }
.about-content { padding-right: 20px; }
.about-content h2 { margin-bottom: 1.25rem; }
.about-content p { color: var(--gray-600); margin-bottom: 1rem; }
.about-features { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 12px; }
.about-feature { display: flex; align-items: flex-start; gap: 12px; }
.feature-icon { width: 36px; height: 36px; background: rgba(232,82,26,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.feature-text strong { display: block; font-size: 0.9rem; color: var(--navy); }
.feature-text span { font-size: 0.82rem; color: var(--gray-600); }

/* SECTORS */
.sectors-section { background: var(--gray-50); }
.sectors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sector-card { background: var(--white); border-radius: var(--radius); padding: 32px 24px; border: 2px solid transparent; transition: var(--transition); cursor: pointer; position: relative; overflow: hidden; }
.sector-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sector-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--orange), var(--orange-light)); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1rem; box-shadow: 0 4px 12px rgba(232,82,26,0.25); }
.sector-card h4 { color: var(--navy); margin-bottom: 0.4rem; }
.sector-card p { font-size: 0.82rem; color: var(--gray-600); line-height: 1.5; }

/* TESTIMONIAL */
.testimonial-section { background: var(--navy); position: relative; overflow: hidden; }
.testimonial-section::before { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: rgba(232,82,26,0.08); border-radius: 50%; }
.testimonial-inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; text-align: center; }
.quote-mark { font-size: 7rem; line-height: 0.6; color: var(--orange); opacity: 0.4; font-family: Georgia, serif; }
.testimonial-text { font-size: clamp(1.2rem, 2.5vw, 1.7rem); color: var(--white); font-style: italic; font-weight: 300; line-height: 1.6; margin: 1rem 0 1.5rem; }
.testimonial-source { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.testimonial-source strong { color: var(--orange); display: block; font-style: normal; font-size: 1rem; margin-top: 4px; }

/* AGENCIES */
.agencies-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.agency-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--gray-200); }
.agency-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.agency-photo { aspect-ratio: 4/3; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.agency-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.agency-card:hover .agency-photo img { transform: scale(1.06); }
.agency-photo-placeholder { color: rgba(255,255,255,0.2); font-size: 4rem; }
.agency-label { position: absolute; top: 16px; left: 16px; background: var(--orange); color: var(--white); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: 50px; }
.agency-body { padding: 24px; }
.agency-body h3 { color: var(--navy); margin-bottom: 12px; font-size: 1.2rem; }
.agency-info { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.agency-info-item { display: flex; align-items: flex-start; gap: 8px; font-size: 0.85rem; color: var(--gray-600); }
.agency-info-item .icon { color: var(--orange); flex-shrink: 0; }
.agency-phone { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,82,26,0.08); color: var(--orange); font-weight: 700; font-size: 1rem; padding: 10px 16px; border-radius: 8px; margin-bottom: 14px; transition: var(--transition); }
.agency-phone:hover { background: var(--orange); color: var(--white); }
.agency-hours { font-size: 0.78rem; color: var(--gray-400); line-height: 1.6; }

/* FEATURED JOBS */
.jobs-featured { background: var(--gray-50); }
.jobs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 2.5rem; }
.job-card { background: var(--white); border-radius: var(--radius); padding: 24px; border: 2px solid transparent; transition: var(--transition); }
.job-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.job-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.job-sector-badge { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-600); background: var(--gray-100); padding: 4px 10px; border-radius: 50px; white-space: nowrap; }
.job-new-badge { font-size: 0.7rem; font-weight: 700; color: var(--orange); background: rgba(232,82,26,0.1); padding: 4px 10px; border-radius: 50px; }
.job-card h4 { color: var(--navy); font-size: 1.05rem; margin-bottom: 8px; }
.job-location { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--orange); font-weight: 600; margin-bottom: 12px; }
.job-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.job-meta-item { font-size: 0.8rem; color: var(--gray-600); display: flex; align-items: center; gap: 5px; }
.job-salary { font-size: 0.85rem; color: var(--navy); font-weight: 600; margin-bottom: 14px; }
.job-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--gray-100); }
.job-ref { font-size: 0.72rem; color: var(--gray-400); }
.jobs-cta { text-align: center; }

/* SPLIT */
.split-section { padding: 0; display: grid; grid-template-columns: 1fr 1fr; }
.split-panel { padding: 80px 60px; display: flex; flex-direction: column; gap: 20px; }
.split-panel.navy { background: var(--navy); }
.split-panel.orange { background: var(--orange); }
.split-panel .icon-big { font-size: 3rem; }
.split-panel h2 { color: var(--white); }
.split-panel p { color: rgba(255,255,255,0.75); font-size: 1rem; max-width: 420px; }
.split-panel .btn { align-self: flex-start; }
.split-panel.navy .btn { background: var(--white); color: var(--navy); }
.split-panel.navy .btn:hover { background: var(--gray-100); }
.split-panel.orange .btn { background: var(--navy); color: var(--white); }
.split-panel.orange .btn:hover { background: var(--navy-dark); }
.split-list { display: flex; flex-direction: column; gap: 10px; }
.split-list li { color: rgba(255,255,255,0.85); font-size: 0.9rem; display: flex; align-items: center; gap: 10px; }
.split-list li::before { content: "✓"; color: var(--orange); font-weight: 700; }
.split-panel.orange .split-list li::before { color: var(--white); }

/* NEWSLETTER */
.newsletter-section { background: var(--gray-50); }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form input { flex: 1; padding: 14px 20px; border-radius: 50px; border: 2px solid var(--gray-200); font-size: 0.95rem; outline: none; transition: var(--transition); font-family: inherit; }
.newsletter-form input:focus { border-color: var(--orange); }
.newsletter-disclaimer { font-size: 0.75rem; color: var(--gray-400); margin-top: 10px; }

/* FOOTER */
footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); }
.footer-top { padding: 64px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-col h5 { color: var(--white); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-col p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.875rem; transition: var(--transition); padding: 2px 0; }
.footer-links a:hover { color: var(--orange); }
.footer-agency-item { display: flex; flex-direction: column; gap: 3px; margin-bottom: 16px; }
.footer-agency-item strong { color: var(--white); font-size: 0.875rem; }
.footer-agency-item span, .footer-agency-item a { font-size: 0.8rem; }
.footer-agency-item a { color: var(--orange-light); }
.footer-bottom { background: rgba(0,0,0,0.2); padding: 18px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { opacity: 0.6; transition: var(--transition); }
.footer-legal a:hover { opacity: 1; color: var(--orange); }

/* PAGE HERO */
.page-hero { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%); padding: 140px 0 80px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: 0; right: 0; width: 400px; height: 400px; background: rgba(232,82,26,0.1); border-radius: 50%; transform: translate(30%, -30%); }
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-bottom: 1rem; }
.breadcrumb a { color: var(--orange-light); }
.breadcrumb span::before { content: "/"; margin-right: 8px; }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 560px; }

/* VALUES */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--white); border-radius: var(--radius); padding: 36px 28px; text-align: center; box-shadow: var(--shadow-sm); border-bottom: 4px solid transparent; transition: var(--transition); }
.value-card:hover { border-bottom-color: var(--orange); transform: translateY(-4px); }
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 { color: var(--navy); margin-bottom: 0.75rem; }
.value-card p { color: var(--gray-600); font-size: 0.9rem; }

/* APRIME */
.aprime-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); }
.aprime-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.aprime-content h2 { color: var(--white); margin-bottom: 1rem; }
.aprime-content p { color: rgba(255,255,255,0.75); margin-bottom: 1rem; }
.aprime-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.aprime-stat { text-align: center; }
.aprime-stat strong { display: block; font-size: 2.5rem; font-weight: 800; color: var(--orange); }
.aprime-stat span { color: rgba(255,255,255,0.65); font-size: 0.85rem; }
.aprime-logo-box { background: rgba(255,255,255,0.06); border-radius: var(--radius-lg); padding: 48px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; border: 1px solid rgba(255,255,255,0.1); }
.aprime-logo-box span { font-size: 1.5rem; font-weight: 700; color: var(--white); letter-spacing: 0.08em; }
.aprime-logo-box small { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

/* JOBS PAGE */
.jobs-filters { background: var(--white); padding: 32px 0; border-bottom: 1px solid var(--gray-200); position: sticky; top: 72px; z-index: 100; box-shadow: var(--shadow-sm); }
.filters-form { display: flex; gap: 12px; align-items: flex-end; flex-wrap: wrap; }
.filter-group { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 160px; }
.filter-group label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-600); }
.filter-group select, .filter-group input { padding: 10px 14px; border: 2px solid var(--gray-200); border-radius: 8px; font-size: 0.9rem; outline: none; transition: var(--transition); font-family: inherit; background: var(--white); color: var(--text); cursor: pointer; }
.filter-group select:focus, .filter-group input:focus { border-color: var(--orange); }
.filters-count { text-align: center; padding: 20px 0; color: var(--gray-600); font-size: 0.95rem; }
.filters-count strong { color: var(--orange); font-size: 1.1rem; }
.jobs-section { background: var(--gray-50); padding: 40px 0 80px; }
.jobs-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.job-card-full { background: var(--white); border-radius: var(--radius); padding: 28px; border: 2px solid transparent; transition: var(--transition); box-shadow: var(--shadow-sm); }
.job-card-full:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.job-card-full .job-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.job-card-full .job-subtitle { font-size: 0.82rem; color: var(--gray-600); margin-bottom: 12px; }
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.job-tag { font-size: 0.72rem; font-weight: 600; padding: 4px 10px; border-radius: 50px; }
.job-tag.orange { background: rgba(232,82,26,0.1); color: var(--orange); }
.job-tag.navy { background: rgba(27,58,75,0.1); color: var(--navy); }
.job-tag.gray { background: var(--gray-100); color: var(--gray-600); }
.job-card-full .salary { color: var(--orange); font-weight: 700; font-size: 0.9rem; margin-bottom: 12px; }
.job-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--gray-100); }
.job-card-footer .meta { font-size: 0.75rem; color: var(--gray-400); }
.cities-section { background: var(--white); padding: 64px 0; }
.cities-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.5rem; }
.city-tag { padding: 8px 16px; background: var(--gray-100); border-radius: 50px; font-size: 0.85rem; color: var(--gray-800); transition: var(--transition); cursor: pointer; }
.city-tag:hover { background: var(--orange); color: var(--white); }
.sectors-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.5rem; }
.sector-chip { padding: 10px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: var(--transition); }
.sector-chip:nth-child(1) { background: rgba(232,82,26,0.12); color: var(--orange); }
.sector-chip:nth-child(2) { background: rgba(27,58,75,0.1); color: var(--navy); }
.sector-chip:nth-child(3) { background: rgba(16,185,129,0.1); color: #059669; }
.sector-chip:nth-child(4) { background: rgba(139,92,246,0.1); color: #7C3AED; }
.sector-chip:nth-child(5) { background: rgba(245,158,11,0.1); color: #D97706; }
.sector-chip:nth-child(6) { background: rgba(59,130,246,0.1); color: #1D4ED8; }
.sector-chip:hover { opacity: 0.75; transform: scale(0.98); }

/* BLOG */
.blog-section { background: var(--gray-50); padding: 48px 0 80px; }
.blog-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.blog-tab { padding: 10px 18px; border-radius: 8px; font-size: 0.85rem; font-weight: 600; cursor: pointer; border: 2px solid var(--gray-200); background: var(--white); color: var(--gray-600); transition: var(--transition); }
.blog-tab.active, .blog-tab:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.article-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.article-image { aspect-ratio: 16/9; overflow: hidden; position: relative; }
.article-image-bg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; padding: 24px; text-align: center; }
.article-image-bg.navy-bg { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); }
.article-image-bg.orange-bg { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%); }
.article-image-bg.dark-bg { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }
.article-image-bg h3 { color: var(--white); font-size: 1.1rem; line-height: 1.3; }
.article-cat { position: absolute; top: 12px; left: 12px; background: var(--orange); color: var(--white); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 50px; }
.article-body { padding: 24px; }
.article-date { font-size: 0.75rem; color: var(--gray-400); margin-bottom: 8px; }
.article-body h3 { font-size: 1rem; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.article-body p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; }
.article-read-more { font-size: 0.85rem; color: var(--orange); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.article-read-more:hover { gap: 10px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.contact-card { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); margin-bottom: 16px; }
.contact-card h4 { color: var(--navy); margin-bottom: 8px; font-size: 1rem; }
.contact-card p { font-size: 0.9rem; color: var(--gray-600); }
.contact-card a { color: var(--orange); font-weight: 600; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea { padding: 12px 16px; border: 2px solid var(--gray-200); border-radius: 8px; font-size: 0.9rem; outline: none; transition: var(--transition); font-family: inherit; color: var(--text); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* UTILS */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.text-orange { color: var(--orange); }
.text-center { text-align: center; }
.hidden { display: none !important; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 24px; }
  .aprime-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  section { padding: 56px 0; }
  nav, .header-cta { display: none; }
  .burger { display: flex; }
  .hero { min-height: 100svh; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .agencies-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .jobs-grid, .jobs-list { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; }
  .split-panel { padding: 56px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .filters-form { flex-direction: column; }
}
@media (max-width: 480px) {
  .sectors-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.9rem; }
  .hero-cta { flex-direction: column; }
}
