/* ==========================================================================
   AVENZ GROUP OF SERVICES — Design System
   Palette:  --az-orange (brand core) / --az-orange-deep / --az-charcoal
             --az-steel (metallic silver, echoes the "AZ" mark) / --az-white / --az-mist
   Type:     Display — "Manrope"  |  Body — "Inter"
   Signature: the diagonal "AZ cut" — a repeating angled divider/underline
              motif lifted directly from the slash in the logo's A/Z mark.
   ========================================================================== */

:root {
  --az-orange: #e85d2c;
  --az-orange-deep: #c2431a;
  --az-charcoal: #14161b;
  --az-charcoal-soft: #1e2128;
  --az-steel: #aeb4be;
  --az-steel-light: #e4e6ea;
  --az-white: #ffffff;
  --az-mist: #f5f5f3;

  --font-display: "Manrope", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 10px rgba(20, 22, 27, 0.06);
  --shadow-md: 0 12px 40px rgba(20, 22, 27, 0.1);
  --shadow-lg: 0 24px 70px rgba(20, 22, 27, 0.16);

  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--az-charcoal);
  background: var(--az-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
  height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
p {
  margin: 0;
}
button {
  font-family: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--az-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--az-orange-deep);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--az-orange);
  display: inline-block;
  transform: skewX(-20deg);
}

/* ---- Signature diagonal cut ---- */
.az-cut {
  position: relative;
}
.az-cut::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 64px;
  height: 6px;
  background: linear-gradient(100deg, var(--az-orange), var(--az-orange-deep));
  transform: skewX(-24deg);
}
.az-cut.center::after {
  left: 50%;
  transform: translateX(-50%) skewX(-24deg);
}

.section {
  padding: 96px 0;
}
.section-tight {
  padding: 64px 0;
}
.section-dark {
  background: var(--az-charcoal);
  color: var(--az-white);
}
.section-mist {
  background: var(--az-mist);
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
}
.section-head p {
  margin-top: 18px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5b5f6a;
}
.section-dark .section-head p {
  color: var(--az-steel-light);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-display);
  border: 2px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(100deg, var(--az-orange), var(--az-orange-deep));
  color: var(--az-white);
  box-shadow: 0 10px 30px rgba(232, 93, 44, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(232, 93, 44, 0.45);
}
.btn-ghost {
  background: transparent;
  border-color: rgba(20, 22, 27, 0.16);
  color: var(--az-charcoal);
}
.btn-ghost:hover {
  border-color: var(--az-orange);
  color: var(--az-orange-deep);
  transform: translateY(-3px);
}
.section-dark .btn-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--az-white);
}
.section-dark .btn-ghost:hover {
  border-color: var(--az-orange);
  color: var(--az-orange);
}
.btn-sm {
  padding: 11px 22px;
  font-size: 0.85rem;
}

/* ---- Header / Nav ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.35s var(--ease), padding 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(20, 22, 27, 0.08);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  height: 42px;
  width: auto;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--az-charcoal);
}
.site-header.is-scrolled .brand-name,
.site-header:not(.is-transparent) .brand-name {
  color: var(--az-charcoal);
}
.is-transparent .brand-name {
  color: var(--az-white);
}
.is-transparent.is-scrolled .brand-name {
  color: var(--az-charcoal);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--az-charcoal);
  position: relative;
  padding: 4px 0;
}
.is-transparent .nav-links a {
  color: var(--az-white);
}
.is-transparent.is-scrolled .nav-links a {
  color: var(--az-charcoal);
}
.nav-links a.active,
.nav-links a:hover {
  color: var(--az-orange-deep);
}
.is-transparent .nav-links a:hover,
.is-transparent .nav-links a.active {
  color: var(--az-orange);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--az-orange);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1100;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--az-charcoal);
  margin: 6px 0;
  transition: 0.3s;
}
.is-transparent .nav-toggle span {
  background: var(--az-white);
}
.is-transparent.is-scrolled .nav-toggle span {
  background: var(--az-charcoal);
}

@media (max-width: 920px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 30%;
    background: var(--az-charcoal);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    padding: 40px;
  }
  .nav-links a {
    color: var(--az-white) !important;
    font-size: 1.2rem;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-toggle {
    display: block;
  }
  .nav-cta .btn-ghost {
    display: none;
  }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(
      ellipse 80% 60% at 80% 0%,
      rgba(232, 93, 44, 0.28),
      transparent 60%
    ),
    linear-gradient(180deg, #14161b 0%, #1b1e25 60%, #14161b 100%);
  color: var(--az-white);
  overflow: hidden;
  padding-top: 120px;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 140%;
  background: linear-gradient(
      115deg,
      transparent 46%,
      rgba(232, 93, 44, 0.12) 47%,
      rgba(232, 93, 44, 0.12) 49%,
      transparent 50%
    ),
    linear-gradient(
      115deg,
      transparent 60%,
      rgba(174, 180, 190, 0.08) 61%,
      rgba(174, 180, 190, 0.08) 62%,
      transparent 63%
    );
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--az-steel-light);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--az-orange);
}
.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  font-weight: 800;
}
.hero h1 span {
  background: linear-gradient(100deg, var(--az-orange), #f2966b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  margin-top: 26px;
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--az-steel-light);
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--az-white);
}
.hero-stat .num span {
  color: var(--az-orange);
}
.hero-stat .label {
  font-size: 0.82rem;
  color: var(--az-steel);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  z-index: 2;
  aspect-ratio: 1/1.02;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.hero-visual img {
  width: 78%;
  filter: drop-shadow(0 30px 60px rgba(232, 93, 44, 0.35));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .hero-visual {
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ---- Marquee / trust strip ---- */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid #ececea;
  border-bottom: 1px solid #ececea;
  padding: 26px 0;
  background: var(--az-white);
}
.marquee {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: scroll 26s linear infinite;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.marquee span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #b7bac2;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* ---- Cards ---- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 920px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--az-white);
  border: 1px solid #ededeb;
  border-radius: var(--radius-md);
  padding: 34px 28px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
    border-color 0.4s;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card .icon-badge {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(140deg, var(--az-orange), var(--az-orange-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--az-white);
  margin-bottom: 22px;
  box-shadow: 0 10px 24px rgba(232, 93, 44, 0.28);
}
.card h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
}
.card p {
  color: #5b5f6a;
  line-height: 1.65;
  font-size: 0.96rem;
}

.card-dark {
  background: var(--az-charcoal-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.card-dark h3 {
  color: var(--az-white);
}
.card-dark p {
  color: var(--az-steel);
}

/* ---- Split section ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 920px) {
  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 380px;
  background: linear-gradient(150deg, var(--az-charcoal), #2a2e38);
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-media .az-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 7rem;
  background: linear-gradient(120deg, var(--az-steel-light), var(--az-steel));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.9;
}

/* ---- Stat counters ---- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 760px) {
  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.stat-box .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--az-orange);
}
.stat-box .label {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--az-steel);
  font-weight: 600;
}

/* ---- Timeline / steps ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
@media (max-width: 920px) {
  .steps {
    grid-template-columns: 1fr;
  }
}
.step {
  position: relative;
  padding: 0 20px 20px 0;
}
.step .step-index {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--az-orange);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.step .step-index::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--az-orange), transparent);
}
.step h4 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}
.step p {
  color: #5b5f6a;
  font-size: 0.92rem;
  line-height: 1.6;
}
.section-dark .step p {
  color: var(--az-steel);
}

/* ---- Testimonials ---- */
.testi-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
}
.testi-track::-webkit-scrollbar {
  height: 6px;
}
.testi-track::-webkit-scrollbar-thumb {
  background: var(--az-steel-light);
  border-radius: 6px;
}
.testi-card {
  scroll-snap-align: start;
  min-width: 340px;
  max-width: 340px;
  background: var(--az-white);
  border: 1px solid #ededeb;
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.testi-stars {
  color: var(--az-orange);
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-size: 1rem;
}
.testi-card p.quote {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #3b3e45;
}
.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--az-orange), var(--az-orange-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}
.testi-person .name {
  font-weight: 700;
  font-size: 0.9rem;
}
.testi-person .role {
  font-size: 0.78rem;
  color: #8b8f98;
}

/* ---- FAQ ---- */
.faq-item {
  border-bottom: 1px solid #ededeb;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--az-charcoal);
}
.faq-q .plus {
  font-size: 1.4rem;
  color: var(--az-orange);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.open .faq-a {
  max-height: 240px;
}
.faq-a p {
  padding-bottom: 22px;
  color: #5b5f6a;
  line-height: 1.7;
  font-size: 0.95rem;
  max-width: 80ch;
}

/* ---- Gallery / masonry ---- */
.masonry {
  columns: 4 220px;
  column-gap: 18px;
}
@media (max-width: 760px) {
  .masonry {
    columns: 2 180px;
  }
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.masonry-item img {
  width: 100%;
  transition: transform 0.5s var(--ease);
}
.masonry-item:hover img {
  transform: scale(1.08);
}
.masonry-item .tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(20, 22, 27, 0.7);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--font-display);
}

/* ---- Forms ---- */
.form-card {
  background: var(--az-white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid #ededeb;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--az-charcoal);
  font-family: var(--font-display);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #e3e3e0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.25s, box-shadow 0.25s;
  background: var(--az-mist);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--az-orange);
  box-shadow: 0 0 0 4px rgba(232, 93, 44, 0.12);
  outline: none;
  background: #fff;
}
.field .error {
  color: #d64545;
  font-size: 0.78rem;
  margin-top: 6px;
  display: none;
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: #d64545;
}
.field.invalid .error {
  display: block;
}
.form-note {
  font-size: 0.8rem;
  color: #8b8f98;
  margin-top: 14px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show {
  display: block;
}
.form-success .check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--az-orange), var(--az-orange-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 1.6rem;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--az-charcoal);
  color: var(--az-steel);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 820px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-brand img {
  height: 38px;
}
.footer-brand span {
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: 1.05rem;
}
.site-footer h4 {
  color: #fff;
  font-size: 0.88rem;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.site-footer ul li {
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.site-footer ul li a:hover {
  color: var(--az-orange);
}
.footer-newsletter {
  display: flex;
  margin-top: 16px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.footer-newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 16px;
  color: #fff;
  font-size: 0.85rem;
}
.footer-newsletter input:focus {
  outline: none;
}
.footer-newsletter button {
  background: var(--az-orange);
  border: none;
  color: #fff;
  padding: 0 20px;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.85rem;
}
.social-row {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: 0.3s;
}
.social-row a:hover {
  background: var(--az-orange);
  border-color: var(--az-orange);
}
.footer-bottom {
  margin-top: 60px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}

/* ---- Floating buttons ---- */
.fab {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: none;
  font-size: 1.3rem;
  color: #fff;
}
.fab-wa {
  background: #25d366;
  bottom: 96px;
}
.fab-top {
  background: var(--az-charcoal);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(10px);
}
.fab-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Page hero (inner pages) ---- */
.page-hero {
  padding: 170px 0 90px;
  background: linear-gradient(180deg, #14161b, #1e2128);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -30%;
  width: 60%;
  height: 160%;
  background: linear-gradient(
    115deg,
    transparent 48%,
    rgba(232, 93, 44, 0.14) 49%,
    rgba(232, 93, 44, 0.14) 51%,
    transparent 52%
  );
}
.breadcrumb {
  font-size: 0.85rem;
  color: var(--az-steel);
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}
.breadcrumb a:hover {
  color: var(--az-orange);
}
.page-hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.page-hero p {
  margin-top: 18px;
  color: var(--az-steel-light);
  max-width: 600px;
  font-size: 1.05rem;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* utility */
.tac {
  text-align: center;
}
.mt-8 {
  margin-top: 8px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-56 {
  margin-top: 56px;
}
.text-steel {
  color: #8b8f98;
}
.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.badge-list li {
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--font-display);
  background: var(--az-mist);
  border: 1px solid #eaeae7;
  padding: 8px 16px;
  border-radius: 999px;
}
.section-dark .badge-list li {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--az-steel-light);
}

.nav-links {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85%;
  height: 100vh;
  background: var(--az-charcoal);

  display: flex;
  flex-direction: column;
  justify-content: center;

  transform: translateX(100%);
  transition: transform 0.45s var(--ease);

  z-index: 1050;
}

.nav-links.open {
  transform: translateX(0);
}
