/* Muhammad Siddiq — buxgalteriya rasmiy sayt */
:root {
  --navy-950: #0c1929;
  --navy-900: #132337;
  --navy-800: #1a3350;
  --navy-700: #234a6e;
  --gold-500: #c9a227;
  --gold-400: #d4b44a;
  --gold-600: #a8861f;
  --paper: #f6f4ef;
  --paper-2: #ebe7de;
  --text: #1e293b;
  --text-muted: #475569;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(12, 25, 41, 0.08);
  --shadow-lg: 0 20px 50px rgba(12, 25, 41, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --font-sans: "IBM Plex Sans", system-ui, sans-serif;
  --font-serif: "Source Serif 4", Georgia, serif;
  --header-h: 72px;
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy-800);
  text-decoration: none;
}

a:hover {
  color: var(--gold-600);
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--gold-500);
  color: var(--navy-950);
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(246, 244, 239, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 51, 80, 0.08);
}

.nav-backdrop {
  display: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy-900);
}

.brand:hover {
  color: var(--navy-900);
}

.brand-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-950));
  color: var(--gold-400);
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.125rem;
}

.brand-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--navy-900);
  border-radius: 1px;
  transition: var(--transition);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-drawer-title {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
}

.nav-list a i {
  width: 1.25em;
  flex-shrink: 0;
  text-align: center;
  color: var(--navy-700);
  opacity: 0.9;
  font-size: 0.95em;
}

.nav-list a:hover {
  color: var(--navy-700);
}

.nav-list a:hover i {
  color: var(--gold-600);
  opacity: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.15s ease;
  text-decoration: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  border-color: var(--gold-600);
  box-shadow: 0 2px 8px rgba(201, 162, 39, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #dcc060, var(--gold-500));
  color: var(--navy-950);
}

.btn-light {
  background: var(--white);
  color: var(--navy-900);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-light:hover {
  background: var(--paper);
  color: var(--navy-900);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.btn-lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-nav {
  white-space: nowrap;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: flex-end;
  padding: 4rem 0 5rem;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy-950) url("../images/hero-accounting.jpg") center / cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(12, 25, 41, 0.92) 0%,
    rgba(12, 25, 41, 0.75) 45%,
    rgba(26, 51, 80, 0.55) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-400);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.hero-accent {
  color: var(--gold-400);
}

.hero-lead {
  font-size: 1.1rem;
  opacity: 0.95;
  margin: 0 0 1.75rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-meta dt {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-400);
  margin-bottom: 0.25rem;
}

.hero-meta dt i {
  margin-right: 0.35rem;
}

.hero-meta dd {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Trust strip */
.trust-strip {
  padding: 1.25rem 0;
  background: var(--white);
  border-bottom: 1px solid rgba(26, 51, 80, 0.08);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy-800);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.trust-item i {
  color: var(--gold-600);
}

/* Sections */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-600);
  margin-bottom: 0.5rem;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  color: var(--navy-900);
  margin: 0 0 0.75rem;
}

.section-desc {
  margin: 0;
  color: var(--text-muted);
}

/* Cards */
.cards-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 51, 80, 0.06);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card-service h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--navy-900);
}

.card-service p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-950));
  color: var(--gold-400);
  border-radius: var(--radius-sm);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-900);
  box-shadow: var(--shadow);
}

.about-badge i {
  color: var(--gold-600);
}

.about-text .lead {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.about-list {
  list-style: none;
  margin: 1.25rem 0 1.5rem;
  padding: 0;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  color: var(--text);
}

.about-list i {
  color: var(--gold-600);
  margin-top: 0.2rem;
}

/* Stats */
.stats {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, #1e4a6e 100%);
  color: var(--white);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-num,
.stat-suffix {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}

.stat {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.15rem;
}

.stat-label {
  width: 100%;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Process */
.process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}

.process li {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(26, 51, 80, 0.08);
  box-shadow: var(--shadow);
  position: relative;
}

.process-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-600);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.process h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  color: var(--navy-900);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.process h3 i {
  color: var(--navy-700);
  font-size: 0.95rem;
}

.process p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(90deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  padding: 2.5rem 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin: 0 0 0.35rem;
}

.cta-text p {
  margin: 0;
  opacity: 0.9;
  max-width: 520px;
}

/* Contact */
.contact-wrap .section-head {
  margin-bottom: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
  min-height: 0;
}

.contact-form {
  background: var(--white);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 51, 80, 0.06);
  min-width: 0;
}

.form-row {
  margin-bottom: 1.1rem;
}

.form-row label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--navy-900);
}

.req {
  color: #b45309;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid rgba(26, 51, 80, 0.15);
  border-radius: var(--radius-sm);
  background: var(--paper);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(26, 74, 110, 0.15);
}

.field-hint {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.form-note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-note i {
  margin-right: 0.35rem;
  color: var(--navy-700);
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.5vw, 1.25rem);
  min-width: 0;
  min-height: 0;
  height: 100%;
}

.contact-card {
  flex: 0 0 auto;
  background: var(--white);
  padding: clamp(1.25rem, 2.5vw, 1.5rem) clamp(1.35rem, 2.5vw, 1.75rem);
  border-radius: var(--radius);
  border: 1px solid rgba(26, 51, 80, 0.08);
  box-shadow: var(--shadow);
}

.contact-card h3 {
  font-size: 1.1rem;
  margin: 0 0 1rem;
  color: var(--navy-900);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.contact-list li:last-child {
  margin-bottom: 0;
}

.ci {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--paper);
  border-radius: var(--radius-sm);
  color: var(--navy-800);
  flex-shrink: 0;
}

.ci-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.contact-list a {
  font-weight: 600;
  color: var(--navy-800);
}

.contact-img-wrap {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: clamp(200px, 28vw, 280px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-width: 0;
}

.contact-img {
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.85);
  padding: 2rem 0;
  border-top: 3px solid var(--gold-600);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand .brand-icon {
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
}

.footer-sub {
  display: block;
  font-size: 0.8rem;
  opacity: 0.75;
}

.footer-copy {
  margin: 0;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--white);
  transition: background var(--transition);
}

.social-link:hover {
  background: var(--gold-500);
  color: var(--navy-950);
}

/* Result modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.modal-overlay[hidden] {
  display: none !important;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 25, 41, 0.55);
  backdrop-filter: blur(4px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: 2rem 1.75rem 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(12, 25, 41, 0.25);
  border: 1px solid rgba(26, 51, 80, 0.08);
  text-align: center;
  animation: modalIn 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: none;
  background: var(--paper);
  color: var(--navy-800);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.modal-close:hover {
  background: var(--navy-800);
  color: var(--white);
}

.modal-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #dcfce7, #bbf7d0);
  color: #15803d;
  font-size: 2rem;
}

.modal-overlay.is-error .modal-icon-wrap {
  background: linear-gradient(145deg, #fee2e2, #fecaca);
  color: #b91c1c;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--navy-900);
  margin: 0 0 0.5rem;
}

.modal-desc {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.modal-ok {
  min-width: 140px;
}

.contact-form.is-loading .btn-label::after {
  content: "";
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  margin-left: 0.5rem;
  border: 2px solid rgba(12, 25, 41, 0.25);
  border-top-color: var(--navy-900);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.contact-form.is-loading button[type="submit"] {
  pointer-events: none;
  opacity: 0.85;
}

/* Mobile nav open state */
body.nav-open {
  overflow: hidden;
}

@media (max-width: 992px) {
  .cards-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .process {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-aside {
    height: auto;
  }

  .contact-img-wrap {
    flex: none;
    min-height: 200px;
    aspect-ratio: 16 / 10;
    max-height: none;
  }

  .contact-img {
    flex: none;
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* Mobil / planshet: menyu chapdan ochiladigan panel */
@media (max-width: 992px) {
  /*
    backdrop-filter headerda bo'lsa, ba'zi brauzerlarda fixed nav viewport emas,
    header qutisi bo'yicha cheklanadi — panel faqat tasmada ko'rinadi.
  */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(246, 244, 239, 0.98);
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 140;
    background: rgba(12, 25, 41, 0.48);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  body.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 210;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: auto;
    width: min(300px, 86vw);
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    max-height: calc(100dvh - var(--header-h));
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0 0 max(1.25rem, env(safe-area-inset-bottom, 0px));
    margin: 0;
    background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
    border-right: 1px solid rgba(26, 51, 80, 0.12);
    box-shadow: 8px 0 32px rgba(12, 25, 41, 0.15);
    transform: translate3d(-100%, 0, 0);
    opacity: 1;
    visibility: visible;
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.32s ease;
    z-index: 220;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  body.nav-open .site-nav {
    transform: translate3d(0, 0, 0);
    box-shadow: 12px 0 48px rgba(12, 25, 41, 0.22);
  }

  .nav-drawer-title {
    display: block;
    margin: 0;
    padding: 1rem 1.25rem 0.75rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(26, 51, 80, 0.1);
    background: rgba(255, 255, 255, 0.45);
    flex-shrink: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0.5rem 1.25rem 1rem;
    flex: 1 1 auto;
    min-height: 0;
  }

  .nav-list li {
    width: 100%;
    border-bottom: 1px solid rgba(26, 51, 80, 0.08);
  }

  .nav-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0;
  }

  .nav-list a i {
    width: 1.5rem;
    font-size: 1.05rem;
    color: var(--gold-600);
    opacity: 1;
  }

  .btn-nav {
    width: 100%;
  }

  body.nav-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  body.nav-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .trust-item {
    justify-content: flex-start;
  }

  .cards-services {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
