/* =============================
   Reset & Variables
============================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-light: #4484ba;
  --blue-dark: #004680;
  --blue-mid: #1a5f9a;
  --grad: linear-gradient(to right, #4484ba, #004680);
  --grad-v: linear-gradient(to bottom, #4484ba, #004680);
  --bg: #ffffff;
  --bg2: #f4f8fc;
  --bg3: #eaf2fa;
  --surface: #ffffff;
  --border: #d8e8f4;
  --text: #1a2a3a;
  --muted: #5a7a9a;
  --light: #8ab4d0;
  --font: 'Vazirmatn', sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 2px 16px rgba(0,70,128,0.08);
  --shadow-hover: 0 6px 28px rgba(0,70,128,0.15);
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font); line-height: 1.7; direction: rtl; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* =============================
   NAV
============================= */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 60px;
  background: var(--blue-dark);
  box-shadow: 0 2px 12px rgba(0,70,128,0.2);
}

.nav__brand {
  font-size: 1.3rem; font-weight: 700; color: #fff; letter-spacing: -0.5px;
}
.nav__brand span { color: #8ec8f0; }

.nav__links { display: flex; gap: 28px; }
.nav__links a { font-size: 0.88rem; color: rgba(255,255,255,0.8); transition: color 0.2s; }
.nav__links a:hover, .nav__links a.active { color: #fff; }

.nav__actions { display: flex; gap: 10px; align-items: center; }

.btn-ghost-sm {
  font-size: 0.85rem; color: #fff; border: 1px solid rgba(255,255,255,0.4);
  padding: 6px 16px; border-radius: 20px; cursor: pointer; transition: all 0.2s;
  font-family: var(--font);
}
.btn-ghost-sm:hover { background: rgba(255,255,255,0.12); }

.btn-primary-sm {
  font-size: 0.85rem; background: #fff; color: var(--blue-dark);
  padding: 6px 18px; border-radius: 20px; font-weight: 600; cursor: pointer;
  transition: all 0.2s; font-family: var(--font);
}
.btn-primary-sm:hover { background: #e8f2fb; }

.nav__hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav__hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; }

/* =============================
   HERO
============================= */
.hero {
  background: var(--blue-dark);
  background: -webkit-linear-gradient(to right, #4484ba, #004680);
  background: linear-gradient(to right, #4484ba, #004680);
  padding: 72px 40px 0;
  position: relative; overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero__content { max-width: 780px; margin: 0 auto; text-align: center; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 16px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 500; margin-bottom: 28px;
}

.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #7de87d; display: inline-block;
  box-shadow: 0 0 6px #7de87d;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }

.hero__title {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 900; color: #fff;
  line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 20px;
}
.hero__accent { color: #c8e8ff; }

.hero__sub {
  font-size: 1rem; color: rgba(255,255,255,0.78);
  margin-bottom: 32px; line-height: 1.8;
}

.hero__search { margin-bottom: 20px; }

.search-wrap {
  display: flex; align-items: center;
  background: #fff; border-radius: 10px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.search-icon { font-size: 1.1rem; color: #aaa; padding: 0 10px 0 0; }
.search-wrap input {
  flex: 1; border: none; outline: none; padding: 14px 16px;
  font-size: 0.9rem; font-family: var(--font); color: var(--text);
}
.search-wrap button {
  background: var(--blue-dark); color: #fff; border: none;
  padding: 14px 28px; font-size: 0.92rem; font-weight: 600;
  font-family: var(--font); cursor: pointer; white-space: nowrap;
  transition: background 0.2s;
}
.search-wrap button:hover { background: var(--blue-light); }

.hero__tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 56px; }
.tag-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); }
.pop-tag {
  font-size: 0.78rem; padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.35); color: #fff;
  border-radius: 20px; cursor: pointer;
  background: rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.pop-tag:hover { background: rgba(255,255,255,0.22); }

.hero__stats {
  display: flex; justify-content: center; gap: 48px;
  background: rgba(255,255,255,0.1); border-top: 1px solid rgba(255,255,255,0.15);
  padding: 20px 0; margin: 0 -40px;
}
.hero__stat { text-align: center; }
.stat-num { display: block; font-size: 1.8rem; font-weight: 900; color: #fff; letter-spacing: -0.02em; }
.stat-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.65); }
.stat-sep { width: 1px; background: rgba(255,255,255,0.2); }

/* =============================
   SECTION SHARED
============================= */
.sec-header { margin-bottom: 40px; position: relative; }
.sec-header.center { text-align: center; }
.sec-tag {
  display: inline-block; font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--blue-light); font-weight: 700; margin-bottom: 10px;
}
.sec-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800;
  letter-spacing: -0.02em; color: var(--text);
}
.sec-header p { color: var(--muted); margin-top: 8px; font-size: 0.95rem; }
.see-all {
  position: absolute; left: 0; bottom: 0;
  font-size: 0.88rem; color: var(--blue-light); font-weight: 600;
}
.see-all:hover { color: var(--blue-dark); }

/* =============================
   CATEGORIES
============================= */
.categories { padding: 90px 0 80px; background: var(--bg); }

.cats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}

.cat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 20px;
  cursor: pointer; transition: all 0.22s; display: block;
  text-decoration: none; color: inherit;
}
.cat-card:hover {
  border-color: var(--blue-light); transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.cat-icon { font-size: 2rem; margin-bottom: 12px; display:flex; align-items:center; }
.cat-icon svg { width: 36px; height: 36px; }

/* Hero accent override — #FFC000 زرد طلایی */
.hero__accent { color: #FFC000 !important; text-shadow: 0 2px 20px rgba(255,192,0,0.3); }
.cat-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.cat-card p { font-size: 0.8rem; color: var(--muted); margin-bottom: 14px; line-height: 1.6; }
.cat-count {
  font-size: 0.75rem; padding: 3px 10px;
  background: var(--bg3); color: var(--blue-mid);
  border-radius: 20px; font-weight: 600;
}

/* =============================
   FREELANCER CARDS
============================= */
.top-freelancers { padding: 80px 0; background: var(--bg2); }

.freelancers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.fc-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px;
  transition: all 0.2s; box-shadow: var(--shadow);
}
.fc-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow-hover); transform: translateY(-3px); }

.fc-top { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 12px; }
.fc-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; color: #fff; flex-shrink: 0;
  background: var(--grad);
}
.fc-meta { flex: 1; }
.fc-name { font-size: 0.95rem; font-weight: 700; color: var(--text); }
.fc-specialty { font-size: 0.8rem; color: var(--blue-mid); font-weight: 500; margin-top: 2px; }
.fc-loc { font-size: 0.75rem; color: var(--muted); margin-top: 3px; }
.fc-rate-wrap { text-align: left; flex-shrink: 0; }
.fc-rate { font-size: 1rem; font-weight: 700; color: var(--blue-dark); }
.fc-rate-lbl { font-size: 0.7rem; color: var(--muted); }

.fc-badges { display: flex; gap: 6px; margin-bottom: 10px; flex-wrap: wrap; }
.badge {
  font-size: 0.68rem; padding: 2px 9px; border-radius: 20px; font-weight: 600;
}
.badge--top { background: #e8f2fb; color: var(--blue-dark); border: 1px solid var(--blue-light); }
.badge--rising { background: #e8f8e8; color: #1a6a1a; border: 1px solid #7dc87d; }
.badge--verified { background: #fff8e0; color: #7a5500; border: 1px solid #f0c040; }

.fc-rating { display: flex; align-items: center; gap: 5px; margin-bottom: 10px; }
.fc-stars { color: var(--blue-light); font-size: 0.82rem; }
.fc-rating-num { font-size: 0.78rem; color: var(--muted); }

.fc-bio { font-size: 0.82rem; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }

.fc-skills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.skill-tag {
  font-size: 0.72rem; padding: 3px 10px;
  border: 1px solid var(--border); border-radius: 20px;
  color: var(--muted); background: var(--bg2);
}

.fc-bottom { display: flex; align-items: center; justify-content: space-between; }
.fc-stats-mini { font-size: 0.75rem; color: var(--muted); }
.fc-stats-mini span { color: var(--blue-dark); font-weight: 600; }

.btn-invite {
  font-size: 0.8rem; padding: 7px 16px;
  border: 1.5px solid var(--blue-dark); border-radius: 20px;
  color: var(--blue-dark); background: transparent;
  cursor: pointer; font-weight: 600; font-family: var(--font);
  transition: all 0.2s;
}
.btn-invite:hover { background: var(--blue-dark); color: #fff; }

/* =============================
   HOW IT WORKS
============================= */
.how-it-works { padding: 80px 0; background: #fff; }

.steps-grid {
  display: flex; align-items: flex-start; gap: 12px;
}

.step {
  flex: 1; background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 24px; text-align: center;
}
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--grad); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; margin: 0 auto 16px;
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }
.step-arrow { font-size: 1.6rem; color: var(--blue-light); margin-top: 60px; padding: 0 4px; }

/* =============================
   TESTIMONIALS
============================= */
.testimonials { padding: 80px 0; background: var(--bg2); }

.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.test-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow);
}
.test-card--featured { border-color: var(--blue-light); }

.test-stars { color: var(--blue-light); font-size: 0.9rem; margin-bottom: 14px; }
.test-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.test-author strong { display: block; font-size: 0.88rem; }
.test-author span { font-size: 0.75rem; color: var(--muted); }

/* =============================
   CTA
============================= */
.cta-section { padding: 80px 0; }
.cta-box {
  background: var(--blue-dark);
  background: linear-gradient(to right, #4484ba, #004680);
  border-radius: var(--radius-lg); padding: 64px;
  text-align: center; box-shadow: var(--shadow-hover);
}
.cta-box h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.cta-box p { color: rgba(255,255,255,0.75); margin-bottom: 28px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: #fff; color: var(--blue-dark);
  padding: 12px 28px; border-radius: 8px; font-weight: 700;
  font-size: 0.92rem; font-family: var(--font); cursor: pointer; transition: all 0.2s;
}
.btn-white:hover { background: #e8f2fb; }
.btn-outline-white {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6);
  padding: 12px 28px; border-radius: 8px; font-weight: 600;
  font-size: 0.92rem; cursor: pointer; transition: all 0.2s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* =============================
   FOOTER
============================= */
.footer {
  background: var(--blue-dark); padding: 56px 0 28px;
}
.footer__top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px;
}
.footer__logo { font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.footer__logo span { color: #8ec8f0; }
.footer__brand p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 16px; }
.footer__socials { display: flex; gap: 16px; }
.footer__socials a { font-size: 0.82rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer__socials a:hover { color: #8ec8f0; }
.footer__links-group h4 { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 14px; }
.footer__links-group ul { display: flex; flex-direction: column; gap: 8px; }
.footer__links-group a { font-size: 0.82rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer__links-group a:hover { color: #8ec8f0; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px;
  font-size: 0.78rem; color: rgba(255,255,255,0.4); text-align: center;
}

/* =============================
   PAGE HERO MINI
============================= */
.page-hero-mini {
  background: linear-gradient(to right, #4484ba, #004680);
  padding: 48px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.page-hero-mini h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; color: #fff; margin: 10px 0 8px; letter-spacing: -0.02em; }
.page-hero-mini p { font-size: 0.95rem; color: rgba(255,255,255,0.72); }

.search-bar-full { background: var(--bg2); padding: 20px 0; border-bottom: 1px solid var(--border); }
.search-bar-full .search-wrap { max-width: 700px; }

/* =============================
   MAIN LAYOUT (freelancers/jobs)
============================= */
.main-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 70vh; }

.sidebar { padding: 24px; border-left: 1px solid var(--border); border-top: 1px solid var(--border); background: #fff; }
.filter-group { margin-bottom: 20px; }
.filter-title { font-size: 0.82rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.filter-sep { height: 1px; background: var(--border); margin: 18px 0; }
.filter-opt {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--muted); margin-bottom: 8px; cursor: pointer;
}
.filter-opt input { accent-color: var(--blue-dark); cursor: pointer; }

.results-area { padding: 24px; border-top: 1px solid var(--border); background: var(--bg2); }
.results-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.results-count { font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.sort-select {
  font-size: 0.82rem; border: 1px solid var(--border); border-radius: 6px;
  padding: 6px 10px; background: #fff; color: var(--text); cursor: pointer;
  font-family: var(--font);
}

/* Freelancer list card */
.fc-list-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px;
  margin-bottom: 14px; transition: all 0.2s;
  box-shadow: var(--shadow);
}
.fc-list-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow-hover); }
.fc-list-top { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 12px; }
.fc-list-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; color: #fff; flex-shrink: 0;
  background: var(--grad);
}
.fc-list-info { flex: 1; }
.fc-list-name { font-size: 1rem; font-weight: 700; color: var(--text); }
.fc-list-title { font-size: 0.82rem; color: var(--blue-mid); margin-top: 2px; font-weight: 500; }
.fc-list-loc { font-size: 0.75rem; color: var(--muted); margin-top: 3px; }
.fc-list-rate { text-align: left; flex-shrink: 0; }
.fc-list-rate-num { font-size: 1.05rem; font-weight: 700; color: var(--blue-dark); }
.fc-list-rate-lbl { font-size: 0.7rem; color: var(--muted); }
.fc-list-bio { font-size: 0.85rem; color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
.fc-list-bottom { display: flex; align-items: center; justify-content: space-between; }
.fc-list-stats { font-size: 0.78rem; color: var(--muted); }
.fc-list-stats span { color: var(--blue-dark); font-weight: 600; }

/* Job card */
.job-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px;
  margin-bottom: 14px; transition: all 0.2s; box-shadow: var(--shadow);
}
.job-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow-hover); }
.job-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.job-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.job-company { font-size: 0.82rem; color: var(--muted); }
.job-budget { font-size: 1rem; font-weight: 700; color: var(--blue-dark); text-align: left; }
.job-budget-lbl { font-size: 0.7rem; color: var(--muted); text-align: left; }
.job-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.job-meta { display: flex; gap: 14px; margin-bottom: 14px; flex-wrap: wrap; }
.job-meta-item { font-size: 0.78rem; color: var(--muted); display: flex; align-items: center; gap: 4px; }
.job-bottom { display: flex; justify-content: space-between; align-items: center; }
.job-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.job-tag { font-size: 0.72rem; padding: 3px 10px; border: 1px solid var(--border); border-radius: 20px; color: var(--muted); background: var(--bg2); }
.btn-apply {
  font-size: 0.82rem; padding: 8px 20px;
  background: var(--blue-dark); color: #fff;
  border: none; border-radius: 8px; cursor: pointer; font-weight: 600;
  font-family: var(--font); transition: background 0.2s;
}
.btn-apply:hover { background: var(--blue-light); }
.job-badge-urgent {
  font-size: 0.68rem; padding: 2px 8px; border-radius: 20px;
  background: #ffe8e8; color: #c00; border: 1px solid #f09090; font-weight: 600;
}

/* =============================
   CONTACT
============================= */
.contact-section { padding: 72px 0 80px; background: var(--bg2); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.contact-info h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 900; letter-spacing: -0.02em; margin: 12px 0 16px; }
.contact-info > p { font-size: 0.95rem; color: var(--muted); margin-bottom: 32px; line-height: 1.8; }
.contact-features { display: flex; flex-direction: column; gap: 12px; }
.cf-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text); }
.cf-item span { color: var(--blue-light); font-weight: 700; font-size: 1rem; }

.contact-form-wrap {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow);
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  border: 1px solid var(--border); border-radius: 8px;
  padding: 11px 14px; font-size: 0.88rem; font-family: var(--font);
  color: var(--text); background: var(--bg2); direction: rtl;
  transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(68,132,186,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.btn-submit {
  background: var(--grad); color: #fff; border: none;
  padding: 14px; border-radius: 8px; font-size: 0.95rem; font-weight: 700;
  font-family: var(--font); cursor: pointer; transition: opacity 0.2s;
}
.btn-submit:hover { opacity: 0.88; }
.form-message {
  font-size: 0.85rem; padding: 12px 16px; border-radius: 8px; display: none;
}
.form-message.success { display: block; background: #e8f8e8; color: #1a6a1a; border: 1px solid #7dc87d; }
.form-message.error { display: block; background: #ffe8e8; color: #c00; border: 1px solid #f09090; }

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 1024px) {
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .hero { padding: 48px 20px 0; }
  .hero__stats { gap: 24px; margin: 0 -20px; }
  .freelancers-grid, .test-grid { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); margin: 0 auto; }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .main-layout { grid-template-columns: 1fr; }
  .sidebar { border-left: none; border-bottom: 1px solid var(--border); }
  .cta-box { padding: 40px 24px; }
  .footer__top { grid-template-columns: 1fr; gap: 24px; }
  .nav { padding: 0 16px; }
  .nav__links, .nav__actions { display: none; }
  .nav__hamburger { display: flex; }
  .nav__links.open { display: flex; flex-direction: column; position: absolute; top: 60px; right: 0; left: 0; background: var(--blue-dark); padding: 16px; gap: 12px; border-bottom: 1px solid rgba(255,255,255,0.1); }
}
