/* پانژه — تاکسی VIP | استایل ایستا */
:root {
  --purple: #502e91;
  --purple-dark: #3d2270;
  --purple-light: #6b3fb8;
  --gold: #c9a227;
  --bg: #faf9fc;
  --surface: #ffffff;
  --text: #1a1625;
  --text-muted: #5c5668;
  --border: #e8e4ef;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(80, 46, 145, 0.08);
  --max: 1140px;
  --header-h: 72px;
  --font: "Vazirmatn", "Tahoma", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--purple);
  text-decoration: none;
}

a:hover {
  color: var(--purple-light);
}

.skip-link {
  position: absolute;
  top: -100px;
  right: 1rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--purple);
  color: #fff;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-weight: 700;
}

.brand:hover {
  color: var(--text);
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
}

.brand-text small {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: block;
  padding: 0.5rem 0.85rem;
  color: var(--text);
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(80, 46, 145, 0.08);
  color: var(--purple);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff;
  box-shadow: 0 4px 16px rgba(80, 46, 145, 0.35);
}

.btn-primary:hover {
  color: #fff;
  box-shadow: 0 6px 24px rgba(80, 46, 145, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}

.btn-outline:hover {
  background: var(--purple);
  color: #fff;
}

/* Hero */
.hero {
  padding: 3rem 0 4rem;
  background: linear-gradient(160deg, #f3eef9 0%, var(--bg) 50%, #fff 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purple);
  background: rgba(80, 46, 145, 0.1);
  border-radius: 999px;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.35;
  font-weight: 800;
}

.hero-lead {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--surface);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-header h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--purple-dark);
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
}

/* Download — بنر مطابق طرح نمونه */
.download-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.25rem;
  min-height: 17rem;
  padding: 2.25rem 2.75rem 2rem;
  border-radius: 2.5rem;
  color: #fff;
  background: #5e2d91;
  box-shadow: 0 12px 40px rgba(80, 46, 145, 0.22);
}

.download-panel__head {
  width: 100%;
  padding-left: 9.5rem;
  text-align: right;
}

.download-panel__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 3.5vw, 2.15rem);
  font-weight: 800;
  line-height: 1.35;
}

.download-panel__lead {
  margin: 0;
  width: 100%;
  max-width: none;
  text-align: right;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 400;
  line-height: 1.7;
  color: #fff;
}

.download-panel__foot {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  direction: ltr;
}

.download-panel__qr {
  position: absolute;
  top: 2.25rem;
  left: 2.75rem;
  z-index: 2;
  padding: 0.5rem;
  background: #fff;
  border-radius: 0.85rem;
  line-height: 0;
}

.download-panel__qr img {
  display: block;
  width: 7.5rem;
  height: auto;
}

.download-panel__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-end;
  gap: 1rem;
  max-width: min(100%, 52rem);
  min-width: 0;
  direction: rtl;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.25rem;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: #f0c14b;
  background: transparent;
  border: 2px solid #f0c14b;
  border-radius: 1.15rem;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}

.download-btn:hover {
  color: #5e2d91;
  background: #f0c14b;
  transform: translateY(-1px);
}

.download-btn:hover .download-btn__icon--fa {
  color: #5e2d91;
}

.download-btn--web {
  flex-direction: row;
}

.download-btn__icon {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  flex-shrink: 0;
}

.download-btn__icon--bazaar {
  width: auto;
  height: 2.75rem;
  max-width: 5.5rem;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  object-fit: contain;
  object-position: center;
}

.download-btn:hover .download-btn__icon--bazaar {
  filter: none;
}

.download-btn__icon--fa {
  font-size: 2rem;
  line-height: 1;
  color: #f0c14b;
}

/* Download — باکس ساده (about و صفحات دیگر) */
.download-box {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}

.download-box h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.download-box > p {
  margin: 0 0 1.5rem;
  opacity: 0.9;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}

.store-links a {
  transition: opacity 0.15s, transform 0.15s;
}

.store-links a:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.store-links img {
  height: 52px;
  width: auto;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(80, 46, 145, 0.2);
}

.service-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 1rem;
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--purple-dark);
}

.service-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Benefits — مزایای سفر */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1.75rem;
}

.benefit-card {
  padding: 1.5rem 1.65rem;
  background: var(--surface);
  border: 2px solid var(--purple);
  border-radius: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.benefit-card:hover {
  box-shadow: 0 10px 28px rgba(80, 46, 145, 0.12);
  transform: translateY(-2px);
}

.benefit-card__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.benefit-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.benefit-card__icon--fa {
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-card__icon--fa .fas {
  font-size: 2rem;
  color: var(--purple);
  line-height: 1;
}

.benefit-card h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1.4;
}

.benefit-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  text-align: justify;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 3rem 0;
  text-align: center;
  background: linear-gradient(160deg, var(--purple-dark), var(--purple));
  color: #fff;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.page-hero p {
  margin: 0;
  opacity: 0.9;
  font-size: 1.1rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  opacity: 0.85;
}

.breadcrumb a {
  color: #fff;
}

/* About layout */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-grid img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.prose h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.35rem;
  color: var(--purple-dark);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  margin: 0 0 1rem;
  text-align: justify;
}

/* Legal / privacy */
.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 16rem) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 5.5rem;
  padding: 1.25rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-toc__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--purple-dark);
}

.legal-toc ol {
  margin: 0;
  padding: 0 1.1rem 0 0;
  font-size: 0.88rem;
  line-height: 1.65;
}

.legal-toc a {
  display: block;
  padding: 0.2rem 0;
  color: var(--text-muted);
  transition: color 0.15s;
}

.legal-toc a:hover {
  color: var(--purple);
}

.legal-card {
  padding: 2rem 2.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.prose-legal .legal-lead {
  margin: 0 0 1.25rem;
  padding: 1rem 1.25rem;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--purple-dark);
  background: linear-gradient(135deg, rgba(80, 46, 145, 0.07), rgba(212, 175, 55, 0.08));
  border-radius: var(--radius);
  border-right: 4px solid var(--gold);
}

.prose-legal h2 {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  scroll-margin-top: 5.5rem;
}

.legal-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  border-radius: 50%;
}

.legal-list {
  margin: 0 0 1rem;
  padding: 0.75rem 1.25rem;
  list-style: none;
  background: rgba(80, 46, 145, 0.04);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.legal-list li {
  position: relative;
  padding: 0.35rem 1rem 0.35rem 0;
}

.legal-list li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.prose-legal a {
  color: var(--purple);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose-legal a:hover {
  color: var(--purple-light);
}

.legal-contact {
  margin: 1.25rem 0 0;
}

.legal-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  background: rgba(80, 46, 145, 0.08);
  border-radius: 999px;
  transition: background 0.15s, transform 0.15s;
}

.legal-contact a:hover {
  background: rgba(80, 46, 145, 0.14);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }
}

/* Driver signup */
.driver-signup-card {
  max-width: 44rem;
  margin: 0 auto;
  padding: 2rem 2.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.driver-intro {
  margin: 0 0 1.5rem;
  padding: 1rem 1.25rem;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--purple-dark);
  background: linear-gradient(135deg, rgba(80, 46, 145, 0.07), rgba(212, 175, 55, 0.08));
  border-radius: var(--radius);
  border-right: 4px solid var(--gold);
}

.driver-signup-card h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
  color: var(--purple-dark);
}

.driver-signup-card h2:first-of-type {
  margin-top: 0;
}

.driver-signup-card h2 i {
  width: 1.25rem;
  color: var(--gold);
  text-align: center;
}

.driver-requirements {
  margin: 0 0 1.25rem;
  padding: 0.75rem 1.25rem;
  list-style: none;
  background: rgba(80, 46, 145, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.driver-requirements li {
  position: relative;
  padding: 0.4rem 1.1rem 0.4rem 0;
}

.driver-requirements li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.driver-notice {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  background: rgba(212, 175, 55, 0.12);
  border-right: 4px solid var(--gold);
  border-radius: var(--radius);
}

.driver-notice p {
  margin: 0;
  line-height: 1.85;
}

.driver-cta-box {
  margin-top: 2rem;
  padding: 2rem 1.75rem;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 28px rgba(80, 46, 145, 0.35);
}

.driver-cta-box__title {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  color: #fff;
}

.driver-cta-box__lead {
  margin: 0 0 1.25rem;
  opacity: 0.9;
}

.driver-cta-box__btn {
  font-size: 1.05rem;
  padding: 0.85rem 1.75rem;
  background: #fff;
  color: var(--purple-dark);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.driver-cta-box__btn:hover {
  color: var(--purple);
  background: #fff;
}

.driver-cta-box__hint {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  opacity: 0.85;
}

.highlight-quote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--purple-dark);
  background: rgba(80, 46, 145, 0.06);
  border-radius: var(--radius);
  border-right: 4px solid var(--gold);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-card {
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.contact-card .icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.contact-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.contact-card p {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-card a.contact-value {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--purple);
  direction: ltr;
  display: inline-block;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
}

.contact-map {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}

.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-map__attr {
  position: absolute;
  bottom: 0.4rem;
  right: 0.5rem;
  padding: 0.15rem 0.45rem;
  font-size: 0.65rem;
  color: rgba(0, 0, 0, 0.55);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 4px;
}

.contact-map__cta {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: rgba(80, 46, 145, 0.9);
  border-radius: 999px;
}

/* Footer */
.site-footer {
  padding: 3rem 0 1.75rem;
  background: linear-gradient(165deg, var(--purple-dark) 0%, #2f1a52 100%);
  color: rgba(255, 255, 255, 0.88);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.05fr auto;
  gap: 2.5rem 2rem;
  margin-bottom: 2rem;
}

.footer-licenses__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.75rem;
}

/* هر لینک/مجوز داخل گرید (کد خام اینماد یا .footer-license) */
.footer-licenses__grid > a {
  display: inline-block;
  flex-shrink: 0;
  padding: 0.4rem;
  line-height: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s, box-shadow 0.15s;
}

.footer-licenses__grid > a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.footer-licenses__grid > a img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

.footer-license:not(.footer-license--enamad) img {
  width: 68px;
}

.footer-col__title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.15rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.footer-col__title i {
  width: 1.15rem;
  text-align: center;
  color: var(--gold);
}

.footer-brand__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
}

.footer-brand__logo:hover {
  color: #fff;
  opacity: 0.92;
}

.footer-brand__logo img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.footer-brand__name small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand__desc {
  margin: 0;
  max-width: 22rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.footer-app-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.15rem;
  padding: 0.6rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--purple-dark);
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.15s, box-shadow 0.15s;
}

.footer-app-link:hover {
  color: var(--purple);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 0.15rem;
}

.footer-menu a,
.footer-address {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.4rem 0;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.15s, transform 0.15s;
}

.footer-menu a:hover {
  color: #fff;
  transform: translateX(-3px);
}

.footer-menu i {
  flex-shrink: 0;
  width: 1.1rem;
  margin-top: 0.2rem;
  text-align: center;
  color: var(--gold);
}

.footer-address {
  margin: 0;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0;
}

.footer-bottom i {
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-licenses__grid {
    justify-content: center;
  }

  .download-panel {
    padding: 1.75rem 1.35rem 1.5rem;
    gap: 1.75rem;
    border-radius: 1.75rem;
    min-height: 0;
  }

  .download-panel__head {
    padding-left: 0;
    padding-top: 8.5rem;
  }

  .download-panel__foot {
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 1.25rem;
    direction: ltr;
  }

  .download-panel__qr {
    top: 1.75rem;
    left: 1.35rem;
  }

  .download-panel__actions {
    justify-content: flex-end;
    max-width: 100%;
    width: 100%;
  }

  .download-btn {
    min-height: 3rem;
    font-size: 0.92rem;
    padding: 0.75rem 1.15rem;
  }

  .download-btn__icon {
    width: 1.75rem;
    height: 1.75rem;
  }

  .download-btn__icon--bazaar {
    height: 2.35rem;
    max-width: 4.75rem;
  }

  .download-btn__icon--fa {
    font-size: 1.75rem;
  }

  .download-panel__qr img {
    width: 6.25rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .header-actions .btn-outline {
    display: none;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .download-panel__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .download-btn {
    justify-content: center;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:hover {
    transform: none;
  }
}
