/* ============================================================
   Personal Partner – Shared Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:      #f74518;
  --orange-dark: #d93210;
  --dark:        #1a1a1a;
  --gray:        #555;
  --mid:         #888;
  --light:       #f8f8f8;
  --white:       #fff;
  --shadow:      0 4px 24px rgba(0,0,0,.10);
  --radius:      12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 72px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 16px rgba(0,0,0,.09);
  transition: height .3s;
}
.navbar.scrolled { height: 60px; }
.navbar-brand img { height: 46px; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  text-decoration: none; color: #333; font-weight: 600; font-size: .86rem;
  padding: 6px 12px; border-radius: 6px;
  transition: background .2s, color .2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { background: var(--orange); color: #fff; }
.nav-cta { background: var(--orange) !important; color: #fff !important; border-radius: 8px !important; }
.nav-cta:hover { background: var(--orange-dark) !important; }

.lang-flags { display: flex; gap: 8px; margin-left: 10px; align-items: center; }
.lang-flags a { display: inline-flex; align-items: center; }
.lang-flags img { height: 20px; border-radius: 3px; opacity: .65; transition: opacity .2s; }
.lang-flags img:hover { opacity: 1; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #333; border-radius: 2px; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: 10px;
  font-family: inherit; font-size: .97rem; font-weight: 700;
  text-decoration: none; cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.btn-primary   { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.btn-outline   { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline:hover { background: rgba(255,255,255,.15); }
.btn-outline-dark { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn-outline-dark:hover { background: var(--orange); color: #fff; }

/* ── PAGE HERO (subpages) ─────────────────────────────────── */
.page-hero {
  position: relative;
  padding: 140px 40px 80px;
  background: var(--dark);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .35;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(247,69,24,.5) 0%, rgba(20,20,20,.65) 100%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.page-hero .breadcrumb {
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; opacity: .65;
  margin-bottom: 16px;
}
.page-hero .breadcrumb a { color: inherit; text-decoration: none; }
.page-hero .breadcrumb a:hover { opacity: 1; text-decoration: underline; }
.page-hero h1 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero p { font-size: 1.1rem; opacity: .88; max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ── FULL HERO (homepage) ─────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://personalpartner.hu/wp-content/uploads/2021/02/personal-header-vo-web.png');
  background-size: cover; background-position: center;
  filter: brightness(.5);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(247,69,24,.5) 0%, rgba(20,20,20,.7) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px; padding: 120px 60px 80px; color: #fff;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.28); color: #fff;
  font-size: .78rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 6px 16px; border-radius: 20px; margin-bottom: 22px;
}
.hero h1 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800; line-height: 1.08; margin-bottom: 20px;
}
.hero h1 span { color: var(--orange); }
.hero > .hero-content > p {
  font-size: 1.12rem; opacity: .92; line-height: 1.7;
  margin-bottom: 36px; max-width: 500px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.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,.65); font-size: .73rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── SECTION COMMONS ─────────────────────────────────────── */
section { padding: 80px 40px; }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-label {
  display: inline-block; font-size: .74rem; font-weight: 800;
  letter-spacing: .13em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800; color: var(--dark); margin-bottom: 14px;
}
.section-header p { font-size: 1rem; color: var(--gray); max-width: 680px; margin: 0 auto; line-height: 1.7; }
.divider { width: 52px; height: 4px; background: var(--orange); border-radius: 2px; margin: 18px auto 0; }

/* ── JOB CARDS ───────────────────────────────────────────── */
.jobs-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 22px;
}
.job-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow); transition: transform .3s, box-shadow .3s;
  text-decoration: none; color: inherit; display: block;
}
.job-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.13); }
.job-card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.job-card-body { padding: 18px; }
.job-card-body h3 { font-size: .97rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.job-card-body p { font-size: .8rem; color: var(--gray); line-height: 1.55; }
.job-tag {
  display: inline-block; background: rgba(247,69,24,.1); color: var(--orange);
  font-size: .7rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: 9px;
}
.job-tag.seasonal { background: rgba(255,165,0,.12); color: #d07800; }
.jobs-cta { text-align: center; margin-top: 44px; }

/* ── STATS ───────────────────────────────────────────────── */
.stats {
  position: relative;
  background-image: url('https://personalpartner.hu/wp-content/uploads/2018/11/05.jpg');
  background-size: cover; background-position: center; background-attachment: fixed;
  color: #fff; padding: 80px 40px;
}
.stats::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(247,69,24,.75), rgba(20,20,40,.82));
}
.stats-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item {
  text-align: center; padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Raleway', sans-serif; font-size: clamp(2.8rem,5vw,4rem); font-weight: 800; }
.stat-num sup { font-size: 1.4rem; vertical-align: super; }
.stat-label { font-size: .88rem; opacity: .85; margin-top: 10px; font-weight: 600; }

/* ── SERVICE CARDS ───────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.service-card {
  background: var(--light); border-radius: 16px; padding: 36px 28px; text-align: center;
  border: 2px solid transparent; transition: border-color .3s, box-shadow .3s, transform .3s;
}
.service-card:hover {
  border-color: var(--orange); box-shadow: 0 8px 32px rgba(247,69,24,.1); transform: translateY(-4px);
}
.service-icon {
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(247,69,24,.1); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
}
.service-icon img { width: 42px; height: 42px; object-fit: contain; }
.service-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.service-card p  { font-size: .88rem; color: var(--gray); line-height: 1.7; }

/* Featured (primary) service card */
.service-card.featured {
  border: 2px solid var(--orange);
  background: #fff;
  box-shadow: 0 6px 28px rgba(247,69,24,.12);
  position: relative;
  grid-column: 1 / -1;
  max-width: 520px;
  margin: 0 auto;
  padding: 40px 32px;
}
.service-card.featured .service-icon {
  width: 90px; height: 90px; background: rgba(247,69,24,.15);
}
.service-card.featured .service-icon img { width: 50px; height: 50px; }
.service-card.featured h3 { font-size: 1.3rem; color: var(--orange); }
.service-card.featured p  { font-size: .94rem; }
.service-card.featured .featured-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* Secondary service cards row */
.services-secondary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.services-secondary .service-card {
  opacity: .88;
  padding: 28px 22px;
}
.services-secondary .service-card .service-icon {
  width: 60px; height: 60px;
}
.services-secondary .service-card .service-icon img { width: 34px; height: 34px; }
.services-secondary .service-card h3 { font-size: .98rem; }
.services-secondary .service-card p  { font-size: .82rem; }
.services-secondary .service-card .secondary-badge {
  display: inline-block;
  background: var(--light);
  color: var(--gray);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 14px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
}
@media(max-width:768px){
  .services-secondary { grid-template-columns: 1fr; }
  .service-card.featured { max-width: 100%; }
}
.services-link  { text-align: center; margin-top: 36px; }
.services-link a {
  color: var(--orange); font-weight: 700; text-decoration: none; font-size: .95rem;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 2px solid transparent; transition: border-color .2s;
}
.services-link a:hover { border-color: var(--orange); }

/* ── ABOUT SECTION ───────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-content .section-label { display: block; }
.about-content h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.7rem,3vw,2.4rem); font-weight: 800; color: var(--dark); margin-bottom: 18px;
}
.about-content h2 span { color: var(--orange); }
.about-content p { font-size: .97rem; color: var(--gray); line-height: 1.8; margin-bottom: 18px; }
.about-img { border-radius: 18px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.14); }
.about-img img { width: 100%; display: block; }
.about-badges { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.about-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--light); border-radius: 10px; padding: 10px 18px;
}
.about-badge-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--orange); display: flex; align-items: center; justify-content: center;
}
.about-badge-icon svg { width: 17px; fill: #fff; }
.about-badge-text { font-size: .83rem; font-weight: 700; color: var(--dark); }

/* ── GRANT CARD ──────────────────────────────────────────── */
.grant-card {
  background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow);
  display: grid; grid-template-columns: 1fr 1fr;
}
.grant-details { padding: 44px; }
.grant-details h3 {
  font-family: 'Raleway', sans-serif; font-size: 1.4rem; font-weight: 800;
  color: var(--dark); margin-bottom: 24px;
}
.grant-row { display: flex; gap: 12px; margin-bottom: 13px; font-size: .88rem; color: var(--gray); }
.grant-row strong { color: var(--dark); min-width: 190px; }
.grant-img { overflow: hidden; }
.grant-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.55fr; gap: 60px; align-items: start; }
.contact-info h3 {
  font-family: 'Raleway', sans-serif; font-size: 1.55rem; font-weight: 800;
  color: var(--dark); margin-bottom: 26px;
}
.contact-item { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; }
.contact-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(247,69,24,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 20px; fill: var(--orange); }
.contact-item-text { font-size: .88rem; color: var(--gray); line-height: 1.7; }
.contact-item-text strong { display: block; color: var(--dark); font-weight: 700; margin-bottom: 2px; }
.contact-item-text a { color: var(--orange); text-decoration: none; }

.contact-form-wrap { background: var(--light); border-radius: 18px; padding: 38px; }
.contact-form-wrap h3 {
  font-family: 'Raleway', sans-serif; font-size: 1.35rem; font-weight: 800;
  color: var(--dark); margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group label { font-size: .8rem; font-weight: 700; color: var(--dark); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 15px;
  border: 2px solid #e0e0e0; border-radius: 10px;
  font-family: inherit; font-size: .93rem; color: var(--dark);
  outline: none; background: #fff; transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 1rem; }
.form-note { font-size: .73rem; color: #aaa; margin-top: 12px; text-align: center; }

/* ── CONTENT BLOCKS (subpages) ───────────────────────────── */
.content-section { padding: 72px 40px; }
.content-section.alt { background: var(--light); }
.content-inner { max-width: 1180px; margin: 0 auto; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.two-col-img { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.two-col-img img { width: 100%; display: block; }

.content-h2 {
  font-family: 'Raleway', sans-serif; font-size: clamp(1.5rem,3vw,2rem);
  font-weight: 800; color: var(--dark); margin-bottom: 18px;
}
.content-h2 span { color: var(--orange); }
.content-lead { font-size: 1.05rem; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.content-text { font-size: .95rem; color: var(--gray); line-height: 1.8; margin-bottom: 14px; }

/* Feature list */
.feature-list { list-style: none; margin: 20px 0; }
.feature-list li {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 14px; font-size: .93rem; color: var(--gray); line-height: 1.6;
}
.feature-list li::before {
  content: ''; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(247,69,24,.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f74518'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-size: 14px; background-repeat: no-repeat; background-position: center;
  flex-shrink: 0; margin-top: 2px;
}

/* Process steps */
.steps { counter-reset: step; display: grid; gap: 20px; margin: 30px 0; }
.step {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--light); border-radius: 14px; padding: 22px;
  border-left: 4px solid var(--orange);
}
.step-num {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--orange); color: #fff;
  font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step-body h4 { font-size: .97rem; font-weight: 800; color: var(--dark); margin-bottom: 5px; }
.step-body p  { font-size: .85rem; color: var(--gray); line-height: 1.6; }

/* Advantage cards */
.adv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 22px; margin: 32px 0; }
.adv-card {
  background: #fff; border-radius: 14px; padding: 28px; box-shadow: var(--shadow);
  border-top: 4px solid var(--orange); transition: transform .3s;
}
.adv-card:hover { transform: translateY(-4px); }
.adv-card-icon { font-size: 2rem; margin-bottom: 14px; }
.adv-card h4 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.adv-card p  { font-size: .85rem; color: var(--gray); line-height: 1.65; }

/* Info box */
.info-box {
  background: rgba(247,69,24,.06); border: 1.5px solid rgba(247,69,24,.25);
  border-radius: 14px; padding: 24px 28px; margin: 24px 0;
  font-size: .9rem; color: var(--gray); line-height: 1.7;
}
.info-box strong { color: var(--orange); }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.55); padding: 48px 40px; }
.footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 24px;
}
.footer-brand img { height: 38px; filter: brightness(0) invert(1); opacity: .65; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .83rem; transition: color .2s; }
.footer-links a:hover { color: var(--orange); }
.footer-copy { font-size: .78rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); text-decoration: none; transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--orange); color: #fff; }
.footer-social svg { width: 17px; fill: currentColor; }

/* ── EU BADGE (fixed right, anchored under navbar) ───────── */
.eu-badge { position: fixed; right: 0; top: 72px; z-index: 500; transition: top .3s; }
.eu-badge.scrolled { top: 60px; }
.eu-badge img { height: 110px; display: block; }

/* ── COOKIE BANNER ───────────────────────────────────────── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: rgba(20,20,20,.96); backdrop-filter: blur(8px);
  padding: 16px 40px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-size: .83rem; color: rgba(255,255,255,.8);
}
#cookie-banner button {
  background: var(--orange); color: #fff; border: none; border-radius: 8px;
  padding: 9px 22px; font-weight: 700; cursor: pointer; white-space: nowrap; transition: background .2s;
}
#cookie-banner button:hover { background: var(--orange-dark); }

/* ── ANIMATIONS ──────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-up:nth-child(5) { transition-delay: .4s; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .navbar { padding: 0 24px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid  { grid-template-columns: repeat(2,1fr); }
  .stat-item   { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .about-grid  { grid-template-columns: 1fr; }
  .about-img   { order: -1; }
  .grant-card  { grid-template-columns: 1fr; }
  .grant-img   { height: 260px; }
  .contact-grid { grid-template-columns: 1fr; }
  .two-col     { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .nav-links, .lang-flags { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: #fff; padding: 16px; box-shadow: 0 8px 24px rgba(0,0,0,.1); gap: 2px;
  }
  .hamburger { display: flex; }
  section, .content-section { padding: 56px 20px; }
  .hero-content { padding: 100px 20px 60px; }
  .page-hero { padding: 120px 20px 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .jobs-grid { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  #cookie-banner { flex-direction: column; text-align: center; padding: 14px 20px; }
  .eu-badge img { height: 72px; }
  .adv-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .jobs-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
}
