/* ===========================
   LegalAid KZ — style.css
   Classic, Dark Navy + Gold
   Mobile-First Responsive
   =========================== */

/* --- CSS Variables --- */
:root {
  --primary: #1B2A5A;
  --primary-hover: #142148;
  --primary-light: rgba(27, 42, 90, 0.08);
  --gold: #C9A84C;
  --gold-hover: #B8962F;
  --gold-light: rgba(201, 168, 76, 0.12);
  --bg: #FFFFFF;
  --text: #1A1A1A;
  --text-light: #444444;
  --text-muted: #777777;
  --gray-bg: #F5F4F0;
  --border: #E0DDD5;
  --shadow: 0 2px 16px rgba(27, 42, 90, 0.08);
  --shadow-lg: 0 8px 32px rgba(27, 42, 90, 0.12);
  --radius: 8px;
  --radius-sm: 6px;
  --transition: 0.25s ease;
  --max-width: 1200px;
  --header-height: 76px;
  --font: 'Merriweather', Georgia, serif;
}

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

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

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

a:hover {
  color: var(--gold-hover);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  font-weight: 700;
  color: var(--primary);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.section--dark {
  background: var(--primary);
  color: #fff;
}

.section--dark h2,
.section--dark h3 {
  color: #fff;
}

.section--dark p {
  color: rgba(255, 255, 255, 0.75);
}

.section--gray {
  background: var(--gray-bg);
}

.section__title {
  text-align: center;
  margin-bottom: 16px;
}

.section__subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 0.95rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--primary);
}

.btn--primary:hover {
  background: var(--gold-hover);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--primary);
}

.btn--lg {
  padding: 16px 40px;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

.btn--white {
  background: #fff;
  color: var(--primary);
}

.btn--white:hover {
  background: var(--gray-bg);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(27, 42, 90, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
}

.header__logo span {
  color: var(--gold);
}

.header__nav {
  display: none;
}

.header__nav.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  height: calc(100vh - var(--header-height));
  background: var(--primary);
  padding: 24px;
  gap: 8px;
  
}

.header__nav a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  font-size: 0.9rem;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all var(--transition);
  border-radius: 2px;
}

.header__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__burger.active span:nth-child(2) {
  opacity: 0;
}

.header__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 16px 0;
  font-size: 0.8rem;
  margin-top: var(--header-height);
  background: var(--gray-bg);
  border-bottom: 1px solid var(--border);
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

.breadcrumbs__item a {
  color: var(--text-muted);
}

.breadcrumbs__item a:hover {
  color: var(--gold);
}

.breadcrumbs__separator {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- Hero --- */
.hero {
  margin-top: var(--header-height);
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #0F1A3A 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
}

.hero p {
  font-size: 1rem;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* --- Services Overview (index) --- */
.services-overview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all var(--transition);
  border-top: 3px solid transparent;
}

.service-card:hover {
  border-top-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--gold-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 26px;
}

.service-card h3 {
  margin-bottom: 10px;
}

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

/* --- Advantages Grid --- */
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all var(--transition);
}

.advantage-card:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
}

.advantage-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 24px;
}

.advantage-card h3 {
  margin-bottom: 8px;
  color: #fff;
}

.advantage-card p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* --- Reviews --- */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-left: 3px solid var(--gold);
}

.review-card__stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  gap: 4px;
}

.review-card__text {
  font-style: italic;
  margin-bottom: 16px;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.8;
}

.review-card__author {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
}

.review-card__role {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0F1A3A 100%);
  color: #fff;
  text-align: center;
  padding: 60px 0;
  border-top: 3px solid var(--gold);
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto 32px;
}

/* --- About Page --- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.about-intro__image {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-bg);
  aspect-ratio: 16/10;
  border: 2px solid var(--border);
}

.about-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 24px 16px;
}

.stat-item__number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
}

.stat-item__label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-top: 4px;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.team-card {
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.team-card__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  background: var(--gray-bg);
  border: 3px solid var(--gold);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  margin-bottom: 4px;
}

.team-card__role {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* --- Services Page --- */
.services-detail {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-detail-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  transition: all var(--transition);
  border-left: 4px solid var(--gold);
}

.service-detail-card:hover {
  box-shadow: var(--shadow);
}

.service-detail-card__icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.service-detail-card h3 {
  margin-bottom: 8px;
}

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

.service-detail-card__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.service-detail-card__tag {
  background: var(--gold-light);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 700;
}

/* --- Pricing Page --- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.pricing-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: var(--gold);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--primary);
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.pricing-card__price {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--primary);
  margin: 16px 0 4px;
}

.pricing-card__currency {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card__period {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 24px;
}

.pricing-card__features {
  text-align: left;
  margin-bottom: 28px;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text-light);
}

.pricing-card__features li iconify-icon {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

.pricing-card__features li.disabled {
  color: var(--text-muted);
  text-decoration: line-through;
}

.pricing-card__features li.disabled iconify-icon {
  color: var(--text-muted);
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

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

.payment-method iconify-icon {
  font-size: 24px;
  color: var(--gold);
}

/* --- FAQ Page --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item.active {
  border-color: var(--gold);
}

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

.faq-item__question:hover {
  color: var(--gold-hover);
}

.faq-item__icon {
  font-size: 20px;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item__answer-inner {
  padding: 0 24px 20px;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.85rem;
  color: var(--primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input.error,
.form-group textarea.error {
  border-color: #C0392B;
}

.form-group .error-msg {
  color: #C0392B;
  font-size: 0.78rem;
  margin-top: 4px;
  display: none;
}

.form-group input.error + .error-msg,
.form-group textarea.error + .error-msg {
  display: block;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.form-checkbox input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--gold);
}

.form-secure {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 12px;
}

.form-secure iconify-icon {
  color: var(--gold);
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info__item:last-child {
  border-bottom: none;
}

.contact-info__item iconify-icon {
  color: var(--gold);
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info__item strong {
  display: block;
  margin-bottom: 2px;
  color: var(--primary);
}

.contact-info__item span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.contact-map {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.contact-map iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* --- Legal Pages --- */
.legal-page {
  margin-top: var(--header-height);
  padding: 40px 0 60px;
}

.legal-page h1 {
  margin-bottom: 24px;
}

.legal-page h2 {
  font-size: 1.2rem;
  margin: 32px 0 12px;
}

.legal-page h3 {
  font-size: 1rem;
  margin: 24px 0 8px;
}

.legal-page p {
  margin-bottom: 12px;
  line-height: 1.9;
  font-size: 0.9rem;
}

.legal-page ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-page ul li {
  margin-bottom: 6px;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.9rem;
}

/* --- Thank You Page --- */
.thankyou {
  margin-top: var(--header-height);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.thankyou__icon {
  width: 80px;
  height: 80px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--gold);
  font-size: 36px;
}

.thankyou h1 {
  margin-bottom: 12px;
}

.thankyou p {
  max-width: 480px;
  margin: 0 auto 32px;
}

/* --- 404 Page --- */
.page-404 {
  margin-top: var(--header-height);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.page-404__code {
  font-size: 5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

.page-404 h1 {
  margin-bottom: 12px;
  font-size: 1.6rem;
}

.page-404 p {
  max-width: 480px;
  margin: 0 auto 24px;
}

.page-404__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.page-404__links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.page-404__links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: #fff;
  padding: 16px 20px;
  z-index: 9999;
  display: none;
  border-top: 2px solid var(--gold);
}

.cookie-banner.show {
  display: block;
}

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.cookie-banner__text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 0;
}

.cookie-banner__text a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-banner__btn {
  background: var(--gold);
  color: var(--primary);
  border: none;
  padding: 8px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
  flex-shrink: 0;
}

.cookie-banner__btn:hover {
  background: var(--gold-hover);
}

/* --- Footer --- */
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 24px;
  border-top: 3px solid var(--gold);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer__logo {
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 12px;
}

.footer__logo span {
  color: var(--gold);
}

.footer__desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

.footer h4 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.85rem;
}

.footer__contact-item iconify-icon {
  color: var(--gold);
  font-size: 18px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom a:hover {
  color: var(--gold);
}

/* --- Honeypot --- */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* --- Page Top Spacing --- */
.page-content {
  padding-top: 20px;
}

/* --- Disclaimer --- */
.disclaimer {
  background: var(--gold-light);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-top: 32px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.disclaimer iconify-icon {
  color: var(--gold);
  font-size: 18px;
  vertical-align: middle;
  margin-right: 6px;
}

/* --- License block --- */
.license-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.license-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.license-item__icon {
  color: var(--gold);
  font-size: 28px;
  flex-shrink: 0;
}

.license-item strong {
  display: block;
  margin-bottom: 2px;
  color: var(--primary);
}

.license-item span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===========================
   Responsive Breakpoints
   =========================== */

/* Tablet: 768px+ */
@media (min-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.85rem; }

  .container {
    padding: 0 32px;
  }

  .section {
    padding: 80px 0;
  }

  .hero {
    padding: 100px 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

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

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

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

  .about-intro {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-detail-card {
    grid-template-columns: 56px 1fr;
    align-items: start;
  }

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

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .contact-form {
    padding: 40px 32px;
  }

  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Desktop: 1024px+ */
@media (min-width: 1024px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .header__nav a {
    padding: 8px 14px;
  }

  .header__burger {
    display: none;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

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

  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large Desktop: 1280px+ */
@media (min-width: 1280px) {
  .container {
    padding: 0 40px;
  }

  .hero h1 {
    font-size: 3rem;
  }
}

/* Print */
@media print {
  .header, .footer, .cookie-banner {
    display: none;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}
[class*="photo"] img,[class*="avatar"] img{width:100%;height:100%;object-fit:cover;border-radius:50%}
[class*="visual"] img{width:100%;height:100%;object-fit:cover;border-radius:12px}

/* === LegalAid Stats === */
.la-stats-section{background:#0F1A3A}
.la-stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;margin-top:2rem}
.la-stat{text-align:center;padding:2rem;background:#142148;border-radius:12px;border:1px solid #1B2A5A}
.la-stat iconify-icon{font-size:2rem;color:#C0392B}
.la-stat__num{font-size:2.5rem;font-weight:800;color:#C0392B;margin:.5rem 0 .25rem}
.la-stat__label{color:#aaa}
@media(max-width:768px){.la-stats-grid{grid-template-columns:repeat(2,1fr)}}
/* === LegalAid Partners === */
.la-partners-section{background:#142148}
.la-partners-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:2rem;margin-top:2rem}
.la-partner{display:flex;flex-direction:column;align-items:center;gap:.5rem;padding:1.5rem 2rem;background:#0F1A3A;border-radius:12px;border:1px solid #1B2A5A}
.la-partner iconify-icon{font-size:2rem;color:#C0392B}
.la-partner span{color:#ddd;font-weight:600;font-size:.9rem}
