/* albionadverttising.org Main Stylesheet */
/* Clean, Native CSS matching reference structure, Mobile Responsive down to 320px, Zero Emojis */

:root {
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --bg-dark: #0d1117;
  --bg-card: #161b22;
  --bg-card-hover: #1c212c;
  --bg-elevated: #1f2430;
  
  --text-main: #f0f6fc;
  --text-muted: #8b949e;
  --text-dim: #6e7681;
  
  --accent-pink: #2563eb;
  --accent-purple: #2563eb;
  
  --gold-star: #d97706;
  --border-color: #212636;
  --border-active: #334155;
  --border-light: #212636;
  
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 6px;
  --radius-full: 6px;
  
  --shadow-sm: none;
  --shadow-md: 0 1px 3px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 2px 8px rgba(0, 0, 0, 0.3);
  
  --container-width: 1150px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-primary);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* --- Header --- */
.top-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0d1117;
  border-bottom: 1px solid var(--border-color);
  padding: 10px 16px;
  width: 100%;
}

.header-container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  white-space: nowrap;
}

.brand-icon-svg {
  width: 24px;
  height: 24px;
  fill: #2563eb;
}

.brand-highlight {
  color: #38bdf8;
  font-weight: 800;
}

.logo-badge {
  background: #dc2626;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link-list {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.nav-item-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.nav-item-link:hover,
.nav-item-link.active {
  color: #fff;
}

/* Language Selector */
.lang-selector {
  position: relative;
}

.lang-select-btn {
  background: #1c212c;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.lang-select-btn:hover {
  border-color: #38bdf8;
}

.lang-dropdown {
  position: absolute;
  right: 0;
  top: 115%;
  background: #161b22;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
  display: none;
  flex-direction: column;
  min-width: 150px;
  box-shadow: var(--shadow-lg);
  z-index: 1001;
}

.lang-dropdown.show {
  display: flex;
}

.lang-opt {
  padding: 10px 14px;
  color: var(--text-main);
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  width: 100%;
}

.lang-opt:hover {
  background: #212636;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  background: #1c212c;
  border: 1px solid var(--border-color);
  border-radius: 6px;
}

.mobile-menu-toggle span {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* --- Hero Section (3-Column Matching Reference) --- */
.hero-section {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 20px 15px 15px;
  width: 100%;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.hero-side-card {
  flex-shrink: 0;
  width: 140px;
}

.hero-content-center {
  flex: 1;
}

.hero-content-center {
  text-align: center;
}

.hero-side-card {
  position: relative;
  height: 170px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.hero-side-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-side-card:hover {
  transform: translateY(-2px);
  border-color: #38bdf8;
}

.hero-side-badge {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: #0d1117;
  border: 1px solid var(--accent-pink);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  white-space: nowrap;
}

.hero-meta-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.meta-pill {
  background: #18202c;
  border: 1px solid var(--border-color);
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.meta-pill-icon {
  width: 14px;
  height: 14px;
  fill: var(--accent-pink);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
  line-height: 1.2;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Main Layout --- */
.main-content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 15px 40px;
  width: 100%;
}

.section-label {
  text-align: center;
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-pink);
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 6px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 25px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Section #1: Offer Cards (Matching Reference) --- */
.offers-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 70px 90px 1fr 200px;
  align-items: center;
  padding: 16px;
  gap: 16px;
  position: relative;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.offer-card:hover {
  border-color: #38bdf8;
  transform: translateY(-2px);
}

.offer-card.rank-1 {
  border: 2px solid #2563eb;
}

.rank-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.rank-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: #38bdf8;
}

.rank-tag {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  background: #1f2430;
  color: #38bdf8;
  padding: 3px 6px;
  border-radius: 4px;
  margin-top: 4px;
  white-space: nowrap;
}

.brand-box {
  width: 85px;
  height: 85px;
  border-radius: 6px;
  overflow: hidden;
  background: #18202c;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  flex-shrink: 0;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.brand-box:hover {
  border-color: var(--accent-pink);
  transform: scale(1.02);
}

.brand-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
  filter: invert(1);
}

.info-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.offer-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.offer-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
}

.offer-badge-tag {
  background: #1e293b;
  color: #38bdf8;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid #334155;
}

.rating-mobile-pill {
  display: none;
}

.offer-tagline {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.feature-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.tag-pill {
  background: #18202c;
  color: #d1ccdf;
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
}

.cta-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  background: #0f131c;
  padding: 12px;
  border-radius: 6px;
  height: 100%;
}

.rating-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rating-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stars {
  color: var(--gold-star);
  font-size: 0.85rem;
  margin-top: 2px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  min-width: 48px;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
  text-align: center;
  padding: 11px 16px;
  border-radius: 6px;
  transition: background 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-cta:hover {
  background: #1d4ed8;
}

/* --- Section #2: Character Cards Grid --- */
.characters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.character-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.character-card:hover {
  border-color: #38bdf8;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.char-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
}

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

.online-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(13, 17, 23, 0.85);
  border: 1px solid var(--border-color);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.68rem;
  color: #10b981;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

.online-dot::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
}

.char-body {
  padding: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
}

.char-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
}

.char-trait {
  color: var(--text-muted);
  font-size: 0.76rem;
  line-height: 1.3;
  margin-bottom: 6px;
}

.char-btn {
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 12px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  min-height: 38px;
  transition: background 0.2s ease;
}

.char-btn:hover {
  background: #1d4ed8;
}

/* --- Reviews & Methodology Grids --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.review-card,
.method-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-card__author {
  font-weight: 700;
  font-size: 0.95rem;
}

.review-card__platform {
  background: #1e293b;
  color: #38bdf8;
  font-size: 0.72rem;
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 700;
}

.review-card__quote {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex-grow: 1;
}

.review-card__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-dim);
}

.method-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #38bdf8;
  font-weight: 700;
}

.method-card__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- FAQ Accordion --- */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-main);
  cursor: pointer;
}

.faq-item__answer {
  padding: 0 20px 16px;
  color: var(--text-muted);
  font-size: 0.88rem;
  display: none;
  line-height: 1.6;
}

.faq-item.active .faq-item__answer {
  display: block;
}

/* --- Lead Form Section & Modal --- */
.lead-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 30px 24px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-md);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 550px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-input, .form-select, .form-textarea {
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--text-main);
  font-size: 0.9rem;
  width: 100%;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: #2563eb;
}

.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: #161b22;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  max-width: 480px;
  width: 100%;
  padding: 30px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 1.5rem;
  color: var(--text-dim);
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 480px;
  background: #161b22;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 18px;
  box-shadow: var(--shadow-lg);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-btn-accept {
  background: #2563eb;
  color: #fff;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.82rem;
  transition: background 0.2s ease;
}

.cookie-btn-accept:hover {
  background: #1d4ed8;
}

.cookie-btn-decline {
  background: #1c212c;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.82rem;
}

/* --- Policy Pages Layout --- */
.page-header {
  padding: 40px 0 20px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.page-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
}

.page-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 6px;
}

.legal-content {
  padding: 40px 0;
  max-width: 850px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin: 24px 0 10px;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 4px;
}

.legal-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 14px;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

.map-container {
  width: 100%;
  height: 350px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg);
}

/* --- Footer & Disclosures --- */
.site-footer {
  background: #040308;
  border-top: 1px solid var(--border-color);
  padding: 40px 0 30px;
  margin-top: auto;
}

.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 16px;
}

.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--accent-pink);
}

.disclosures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}

.disclosure-card {
  background: #141822;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 14px;
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.disclosure-title {
  font-weight: 700;
  color: var(--text-main);
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.social-links-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.social-item-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.social-item-link:hover {
  color: var(--accent-pink);
}

.social-icon-svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.company-info-box {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}

/* --- Mobile Responsiveness (down to 320px) --- */
@media (max-width: 990px) {
  .top-header {
    padding: 10px 14px;
  }
  .main-nav {
    display: none;
  }
  .main-nav.show {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #161b22;
    border-bottom: 1px solid var(--border-color);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
  }
  .main-nav.show .nav-link-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 16px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero-wrapper {
    grid-template-columns: 1fr;
  }
  .hero-side-card {
    display: none;
  }
  .offer-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .rank-col, .cta-col {
    width: 100%;
  }
  .brand-box {
    margin: 0 auto;
  }
  .offer-title-row {
    justify-content: center;
  }
  .feature-pills {
    justify-content: center;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.7rem;
  }
  .footer-top-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .top-header {
    padding: 8px 10px;
  }
  .header-container {
    gap: 6px;
  }
  .brand-logo {
    font-size: 1.05rem;
    gap: 6px;
  }
  .brand-icon-svg {
    width: 20px;
    height: 20px;
  }
  .logo-badge {
    font-size: 0.58rem;
    padding: 1px 4px;
  }
  .header-right {
    gap: 6px;
  }
  .lang-select-btn {
    padding: 4px 8px;
    font-size: 0.78rem;
  }
  .hero-title {
    font-size: 1.45rem;
  }
  .offer-card {
    padding: 12px;
  }
  .characters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .char-media {
    height: 160px;
  }
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}

@media (max-width: 380px) {
  .logo-badge {
    display: none;
  }
  .brand-logo {
    font-size: 0.98rem;
  }
}

@media (max-width: 330px) {
  .top-header {
    padding: 6px 6px;
  }
  .header-container {
    padding: 0 4px;
    gap: 4px;
  }
  .brand-logo {
    font-size: 0.9rem;
    gap: 4px;
  }
  .brand-icon-svg {
    width: 18px;
    height: 18px;
  }
  .logo-badge {
    display: none;
  }
  .header-right {
    gap: 4px;
  }
  .lang-select-btn {
    padding: 4px 6px;
    font-size: 0.7rem;
    gap: 3px;
  }
  .mobile-menu-toggle {
    padding: 4px;
  }
  .mobile-menu-toggle span {
    width: 16px;
  }
  .characters-grid {
    grid-template-columns: 1fr;
  }
}

.footer-social-wrapper {
  margin-bottom: 20px;
  text-align: center;
}

.footer-social-list {
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}

.copyright-text {
  margin-top: 6px;
  color: var(--text-muted);
}

.contact-map-wrap {
  margin-top: 20px;
}

.form-success-message {
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #10b981;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 8px;
  text-align: center;
  line-height: 1.4;
}



