/* ===== حملة العدالة والتنمية - إقليم القنيطرة ===== */

@font-face {
  font-family: "Al Jazeera Arabic";
  src: url("../fonts/Al-Jazeera-Arabic-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue-900: #002d62;
  --blue-800: #003b7e;
  --blue-700: #0a4c99;
  --blue-600: #1560b3;
  --blue-500: #2678cc;
  --gold: #ec891d;
  --gold-light: #f5a94c;
  --white: #ffffff;
  --off-white: #f6f8fb;
  --gray-100: #eef1f6;
  --gray-300: #cbd3de;
  --gray-600: #5b6472;
  --gray-800: #2b3340;
  --text: #1c2430;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(10, 47, 92, 0.1);
  --shadow-lg: 0 16px 40px rgba(10, 47, 92, 0.16);
  --brand-gradient: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 55%, var(--gold) 150%);
  --brand-gradient-soft: linear-gradient(135deg, var(--blue-700), var(--gold));
  --brand-gradient-text: linear-gradient(90deg, var(--gold-light), var(--gold));
  --glow-orange: 0 10px 26px rgba(236, 137, 29, 0.35);
  font-size: 16px;
}

::selection { background: var(--gold); color: var(--blue-900); }

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Al Jazeera Arabic", "Tajawal", "Segoe UI", Tahoma, Arial, sans-serif;
  background: var(--off-white);
  color: var(--text);
  direction: rtl;
  line-height: 1.75;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
section { padding: 72px 0; }

.container {
  width: 92%;
  max-width: 1160px;
  margin: 0 auto;
}

/* ===== Topbar ===== */
.topbar {
  background: var(--blue-900);
  color: var(--gray-100);
  font-size: 0.85rem;
  border-bottom: 2px solid var(--gold);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { opacity: 0.9; }
.topbar a:hover { opacity: 1; text-decoration: underline; }
.topbar .contact-line { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar .social { display: flex; gap: 14px; align-items: center; }
.topbar .social a { display: flex; }
.topbar .social a svg { width: 16px; height: 16px; }

/* ===== Header / Nav ===== */
header.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(10,47,92,0.08);
}
header.site-header::before {
  content: "";
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-900), var(--gold) 60%, var(--gold-light));
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.brand .lamp-icon {
  height: 46px;
  width: auto;
  flex-shrink: 0;
}
.brand .brand-text span {
  font-size: 0.82rem;
  color: var(--blue-900);
  font-weight: 800;
}

nav.main-nav ul {
  display: flex;
  gap: 6px;
}
nav.main-nav a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--blue-900);
  transition: all .2s ease;
}
nav.main-nav a:hover {
  background: var(--gray-100);
}
nav.main-nav a.active {
  background: var(--brand-gradient);
  color: var(--white);
  box-shadow: var(--glow-orange);
}

.nav-cta {
  display: flex;
  gap: 10px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--blue-900);
  cursor: pointer;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s ease;
}
.btn-primary {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--blue-900);
  box-shadow: 0 6px 18px rgba(236, 137, 29, 0.28);
}
.btn-primary:hover {
  background: linear-gradient(120deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: var(--glow-orange);
}
.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--blue-900);
  border-color: var(--gold);
}
.btn-outline-blue {
  background: transparent;
  border-color: var(--blue-800);
  color: var(--blue-800);
}
.btn-outline-blue:hover {
  background: var(--brand-gradient);
  border-color: transparent;
  color: var(--white);
}
.btn-block { display: block; width: 100%; text-align: center; }
.btn:disabled { opacity: .6; cursor: not-allowed; }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(236,137,29,0.3), transparent 45%),
    radial-gradient(circle at 8% 90%, rgba(236,137,29,0.16), transparent 40%);
}
.hero::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.12;
  filter: blur(2px);
}
.hero .container {
  position: relative;
  z-index: 1;
  padding: 90px 0 100px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero .tag {
  display: inline-block;
  background: rgba(236,137,29,0.15);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 2.6rem;
  line-height: 1.3;
  margin: 0 0 18px;
  font-weight: 800;
}
.hero h1 span {
  background: var(--brand-gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 1.1rem;
  color: var(--gray-100);
  max-width: 46ch;
  margin-bottom: 30px;
}
.hero .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-bottom: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.hero-visual .lamp-big {
  width: 140px;
  height: 140px;
  margin: 0 auto 18px;
  background: var(--white);
  border-radius: 50%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px rgba(236,137,29,0.35), var(--glow-orange);
}
.hero-visual .lamp-big img { width: 100%; height: 100%; object-fit: contain; }
.hero-visual h3 { margin: 0 0 6px; font-size: 1.3rem; }
.hero-visual p { color: var(--gray-100); font-size: 0.92rem; margin: 0; }

.stats-strip {
  background: linear-gradient(90deg, var(--blue-900), var(--blue-800) 50%, var(--blue-900));
  color: var(--white);
  position: relative;
}
.stats-strip::before {
  content: "";
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.stats-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 30px 0;
  text-align: center;
}
.stats-strip > .container > div {
  position: relative;
}
.stats-strip > .container > div + div::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + 10px);
  transform: translateY(-50%);
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,0.15);
}
.stats-strip strong {
  display: block;
  font-size: 1.9rem;
  background: var(--brand-gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stats-strip span { font-size: 0.85rem; color: var(--gray-100); }

/* ===== Section headings ===== */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}
.section-head .eyebrow {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.section-head .eyebrow::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-left: 8px;
}
.section-head h2 {
  font-size: 2rem;
  color: var(--blue-900);
  margin: 8px 0 12px;
}
.section-head h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: var(--brand-gradient-soft);
}
.section-head p { color: var(--gray-600); }

/* ===== Cards grid (home quick links) ===== */
.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.quick-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
  border-top: 4px solid transparent;
  border-image: var(--brand-gradient-soft) 1;
}
.quick-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg), var(--glow-orange); }
.quick-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: var(--brand-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  transition: transform .2s ease;
}
.quick-card:hover .icon { transform: scale(1.08) rotate(-4deg); }
.quick-card h3 { margin: 0 0 10px; color: var(--blue-900); font-size: 1.1rem; }
.quick-card p { color: var(--gray-600); font-size: 0.9rem; margin: 0 0 16px; }

/* ===== Program page ===== */
.axis-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.axis-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-right: 5px solid var(--blue-700);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.axis-card:hover {
  border-right-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.axis-card .num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--white);
  background: var(--brand-gradient);
  padding: 3px 12px;
  border-radius: 999px;
}
.axis-card h3 {
  color: var(--blue-900);
  margin: 6px 0 12px;
  font-size: 1.25rem;
}
.axis-card ul li {
  position: relative;
  padding-right: 22px;
  margin-bottom: 10px;
  color: var(--gray-800);
  font-size: 0.95rem;
}
.axis-card ul li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.download-banner {
  margin-top: 60px;
  background: var(--brand-gradient);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.download-banner::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -8%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.download-banner > * { position: relative; z-index: 1; }
.download-banner h3 { margin: 0 0 6px; }
.download-banner p { margin: 0; color: var(--gray-100); }

/* ===== Candidates marquee (home page) ===== */
.marquee-district-title {
  text-align: center;
  color: var(--blue-900);
  font-size: 1.1rem;
  margin: 0 0 10px;
}
.candidates-marquee {
  padding: 10px 24px 30px;
  max-width: 1160px;
  margin: 0 auto;
}
.marquee-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}
.marquee-card {
  flex: 0 0 auto;
  width: 190px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  text-align: center;
}
.marquee-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(0,45,98,0.35), transparent 55%),
    linear-gradient(135deg, var(--blue-800) 0%, var(--blue-600) 55%, var(--gold) 145%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.marquee-photo img { width: 100%; height: 100%; object-fit: contain; }
.marquee-name { font-weight: 800; color: var(--blue-900); font-size: 0.95rem; margin-bottom: 4px; }
.marquee-role { font-size: 0.78rem; color: var(--gold); font-weight: 700; margin-bottom: 2px; }
.marquee-district { font-size: 0.78rem; color: var(--gray-600); }

@media (max-width: 680px) {
  .marquee-card { width: 150px; }
}

/* ===== Candidates page ===== */
.candidate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.candidate-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.candidate-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.candidate-photo {
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(0deg, rgba(0,45,98,0.35), transparent 55%),
    linear-gradient(135deg, var(--blue-800) 0%, var(--blue-600) 55%, var(--gold) 145%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
  font-size: 3rem;
  font-weight: 800;
  overflow: hidden;
}
.candidate-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.candidate-info { padding: 22px 20px 20px; }
.candidate-info .role {
  display: inline-block;
  background: var(--brand-gradient);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.candidate-info h3 { margin: 0 0 4px; color: var(--blue-900); font-size: 1.1rem; }
.candidate-info .circ { color: var(--gray-600); font-size: 0.85rem; margin-bottom: 10px; }
.candidate-info p { font-size: 0.9rem; color: var(--gray-800); margin: 0; }

.list-note {
  background: linear-gradient(90deg, rgba(236,137,29,0.08), var(--gray-100) 40%);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 40px;
  color: var(--gray-800);
  border-right: 4px solid var(--gold);
}

/* ===== Forms (support / volunteer) ===== */
.form-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: flex-start;
}
.form-side h2 { color: var(--blue-900); font-size: 1.8rem; margin-top: 0; }
.form-side p { color: var(--gray-600); }
.reason-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.reason-list .bullet {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  background: var(--blue-900);
  color: var(--gold-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}
.reason-list div strong { display: block; color: var(--blue-900); margin-bottom: 2px; }
.reason-list div span { color: var(--gray-600); font-size: 0.9rem; }

.card-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 34px;
  border-top: 4px solid transparent;
  border-image: var(--brand-gradient-soft) 1;
}
.card-form h3 { margin-top: 0; color: var(--blue-900); }
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray-800);
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--off-white);
  transition: border-color .2s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(236,137,29,0.15);
}
.form-row.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-row.checkbox input { width: auto; margin-top: 4px; }
.form-row.checkbox label { font-weight: 400; font-size: 0.85rem; color: var(--gray-600); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-msg {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 10px;
  background: #e8f6ec;
  color: #1c6b3a;
  font-weight: 700;
  font-size: 0.9rem;
}
.form-msg.show { display: block; }
.form-msg.error { background: #fdecec; color: #b3261e; }

.share-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--blue-900);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: all .25s ease;
  z-index: 999;
  max-width: 90%;
  text-align: center;
}
.share-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== Share section ===== */
.share-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  text-align: center;
  margin-top: 40px;
}
.share-box h3 { color: var(--blue-900); margin-top: 0; }
.share-icons { display: flex; justify-content: center; gap: 14px; margin-top: 16px; flex-wrap: wrap; }
.share-icons a {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.share-icons a:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--blue-900);
  transform: translateY(-3px);
  box-shadow: var(--glow-orange);
}
.share-icons a svg { width: 22px; height: 22px; }

/* ===== Volunteer roles ===== */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.role-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.role-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.role-card .icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,45,98,0.08), rgba(236,137,29,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.role-card h4 { margin: 0 0 8px; color: var(--blue-900); }
.role-card p { font-size: 0.88rem; color: var(--gray-600); margin: 0; }

/* ===== Footer ===== */
footer.site-footer {
  background: var(--blue-900);
  color: var(--gray-100);
  padding-top: 56px;
  position: relative;
}
footer.site-footer::before {
  content: "";
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold) 50%, var(--blue-500));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-grid h4 { color: var(--white); margin: 0 0 16px; font-size: 1rem; }
.footer-grid .brand-text p { font-size: 0.88rem; color: var(--gray-300); }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul li a { font-size: 0.9rem; color: var(--gray-100); }
.footer-grid ul li a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--blue-900);
  transform: translateY(-3px);
}
.footer-social a { transition: background .2s ease, transform .2s ease; }
.footer-social a svg { width: 17px; height: 17px; }
.footer-bottom {
  text-align: center;
  padding: 18px 0;
  font-size: 0.82rem;
  color: var(--gray-300);
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .quick-links { grid-template-columns: repeat(2, 1fr); }
  .axis-grid { grid-template-columns: 1fr; }
  .candidate-grid { grid-template-columns: repeat(2, 1fr); }
  .form-section { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .roles-grid { grid-template-columns: 1fr 1fr; }
  .stats-strip .container { grid-template-columns: repeat(2, 1fr); }
  .stats-strip > .container > div + div::before { display: none; }
}

@media (max-width: 680px) {
  nav.main-nav { display: none; }
  .menu-toggle { display: block; }
  header.site-header.open nav.main-nav {
    display: block;
    position: absolute;
    top: 100%;
    right: 0; left: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 10px 0;
  }
  header.site-header.open nav.main-nav ul { flex-direction: column; padding: 0 20px; }
  .nav-cta { display: none; }
  .quick-links { grid-template-columns: 1fr; }
  .candidate-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
  section { padding: 48px 0; }
  .hero .container { padding: 60px 0 70px; }
  .hero h1 { font-size: 1.65rem; }
  .hero p.lead { font-size: 1rem; }
  .hero .actions { flex-direction: column; align-items: stretch; }
  .hero .actions .btn { text-align: center; }
  .stats-strip .container { grid-template-columns: 1fr 1fr; gap: 14px; padding: 22px 0; }
  .stats-strip strong { font-size: 1.5rem; }
  .section-head h2 { font-size: 1.5rem; }
  .quick-card, .axis-card, .role-card, .candidate-info { padding: 20px 16px; }
  .card-form { padding: 22px; }
  .download-banner { padding: 26px 20px; flex-direction: column; align-items: flex-start; }
  .download-banner .btn { width: 100%; text-align: center; }
  .topbar .container { justify-content: center; text-align: center; }
}
