/* GuardAdda — Premium corporate security theme */
:root {
  --color-primary: #0B1320;
  --color-primary-2: #111827;
  --color-accent: #F5B700;
  --color-accent-hover: #e0a800;
  --color-bg: #F8FAFC;
  --color-text: #1F2937;
  --color-muted: #6B7280;
  --color-white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(11, 19, 32, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 19, 32, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 19, 32, 0.12);
  --radius: 14px;
  --radius-lg: 22px;
  --font-sans: "Manrope", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --header-h: 76px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body.inner-page .site-header {
  background: rgba(11, 19, 32, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.22);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
}

@media (max-width: 480px) {
  .container {
    width: min(1180px, 100% - 1.25rem);
  }
}

.section {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.section--alt {
  background: linear-gradient(180deg, #eef2f7 0%, var(--color-bg) 100%);
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section__lead {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 640px;
}

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

.text-center .section__lead {
  margin-inline: auto;
}

/* Page loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__inner {
  text-align: center;
}

.page-loader__logo {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border: 3px solid rgba(245, 183, 0, 0.25);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.page-loader__text {
  color: var(--color-white);
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Navbar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.is-scrolled {
  background: rgba(11, 19, 32, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

.logo__mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-accent), #d49a00);
  display: grid;
  place-items: center;
  color: var(--color-primary);
  font-size: 1.1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav__link {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 600;
  position: relative;
  padding-block: 0.25rem;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  width: 100%;
}

.nav__link.is-active {
  color: var(--color-white);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background var(--transition), color var(--transition);
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 4px 14px rgba(245, 183, 0, 0.35);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 6px 20px rgba(245, 183, 0, 0.45);
}

.btn--outline {
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: var(--color-white);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

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

.btn--dark:hover {
  background: var(--color-primary-2);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

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

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 19, 32, 0.98);
    flex-direction: column;
    padding: 2rem;
    padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nav__actions {
    flex-direction: column;
    width: 100%;
  }

  .nav__actions .btn {
    width: 100%;
  }
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: min(88vh, 860px);
  min-height: min(88dvh, 860px);
  padding-top: calc(var(--header-h) + 1.25rem + env(safe-area-inset-top, 0px));
  padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
  overflow: hidden;
  background: var(--color-primary);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.05);
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(11, 19, 32, 0.94) 0%, rgba(11, 19, 32, 0.65) 45%, rgba(17, 24, 39, 0.35) 100%);
  z-index: 1;
}

@media (max-width: 600px) {
  .hero__overlay {
    background: linear-gradient(165deg, rgba(11, 19, 32, 0.97) 0%, rgba(11, 19, 32, 0.78) 55%, rgba(17, 24, 39, 0.55) 100%);
  }
}

.hero__shell {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1.25rem, 4vw, 2rem);
  min-height: 0;
}

.hero__main {
  max-width: 42rem;
  width: 100%;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 6vw + 0.5rem, 3.75rem);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.12;
  text-wrap: balance;
}

.hero__title span {
  color: var(--color-accent);
}

.hero__subtitle {
  font-size: clamp(0.94rem, 2.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.5rem;
  line-height: 1.65;
  max-width: 38rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: stretch;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  flex: 1 1 auto;
  min-width: min(100%, 12rem);
}

.hero__trust-item i {
  color: var(--color-accent);
  flex-shrink: 0;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  width: 100%;
  max-width: 22rem;
  align-self: flex-start;
}

@media (min-width: 901px) {
  .hero {
    min-height: min(92vh, 900px);
    padding-top: calc(var(--header-h) + 2rem + env(safe-area-inset-top, 0px));
    padding-bottom: calc(4rem + env(safe-area-inset-bottom, 0px));
  }

  .hero__shell {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    min-height: min(58vh, 560px);
  }

  .hero__stats {
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
    max-width: none;
    align-self: auto;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero__trust-item {
    flex: 0 1 auto;
    min-width: 0;
    font-size: 0.85rem;
    padding: 0.5rem 0.85rem;
  }

  .hero__subtitle {
    margin-bottom: 2rem;
  }

  .hero__actions {
    gap: 1rem;
    margin-bottom: 2rem;
  }
}

.stat-float {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  min-width: 0;
}

.stat-float__value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.stat-float__label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 480px) {
  .hero {
    min-height: 0;
    padding-top: calc(var(--header-h) + 1rem + env(safe-area-inset-top, 0px));
    padding-bottom: calc(1.75rem + env(safe-area-inset-bottom, 0px));
  }

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

  .hero__actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .hero__trust {
    flex-direction: column;
  }

  .hero__trust-item {
    min-width: 0;
    width: 100%;
    justify-content: center;
  }

  .hero__stats {
    max-width: none;
  }

  .stat-float__value {
    font-size: 1.45rem;
  }

  .logo {
    font-size: 1.1rem;
  }

  .logo__mark {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .page-hero {
    padding-top: calc(var(--header-h) + 2rem + env(safe-area-inset-top, 0px));
    padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
  }

  .page-hero h1 {
    font-size: clamp(1.65rem, 7vw, 2.25rem);
  }
}

/* Reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Trust badges grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr));
  gap: 1.25rem;
}

.trust-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(11, 19, 32, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.trust-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245, 183, 0, 0.2), rgba(245, 183, 0, 0.05));
  display: grid;
  place-items: center;
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.trust-card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.trust-card p {
  font-size: 0.88rem;
  color: var(--color-muted);
  margin: 0;
}

/* Split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

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

  .split--reverse .split__media {
    order: -1;
  }
}

.split__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split__media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.split__media:hover img {
  transform: scale(1.05);
}

.split__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(11, 19, 32, 0.06);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.service-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.08);
}

.service-card__icon {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-accent);
  color: var(--color-primary);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
}

.service-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.service-card__body p {
  font-size: 0.92rem;
  color: var(--color-muted);
  flex: 1;
  margin-bottom: 1rem;
}

/* Premium protocol */
.protocol {
  position: relative;
  background: var(--color-primary);
  color: var(--color-white);
  overflow: hidden;
}

.protocol::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(245, 183, 0, 0.12), transparent 50%);
  pointer-events: none;
}

.protocol .section__title,
.protocol h3 {
  color: var(--color-white);
}

.protocol .section__lead {
  color: rgba(255, 255, 255, 0.75);
}

.protocol-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

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

.protocol__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.protocol__gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.protocol__gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.protocol__gallery figure:hover img {
  transform: scale(1.06);
}

@media (max-width: 560px) {
  .protocol__gallery {
    grid-template-columns: 1fr;
  }

  .protocol__gallery img {
    height: 200px;
  }

  .protocol-list {
    grid-template-columns: 1fr;
  }
}

.protocol-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.protocol-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
}

.protocol-list i {
  color: var(--color-accent);
}

/* Why choose */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), transform var(--transition);
}

.feature-card:hover {
  border-color: rgba(245, 183, 0, 0.5);
  transform: translateY(-3px);
}

.feature-card i {
  font-size: 1.35rem;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--color-muted);
}

/* Technology dashboard layout */
.tech-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

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

.tech-showcase__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(11, 19, 32, 0.08);
}

.tech-showcase__visual img {
  width: 100%;
  display: block;
}

.tech-features {
  display: grid;
  gap: 0.85rem;
}

.tech-feature {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid rgba(11, 19, 32, 0.06);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.tech-feature:hover {
  border-color: rgba(245, 183, 0, 0.45);
  box-shadow: var(--shadow-md);
}

.tech-feature i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--color-primary);
  color: var(--color-accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

/* Industries */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 1.25rem;
}

.industry-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 200px;
  box-shadow: var(--shadow-md);
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  transition: transform 0.6s ease;
}

.industry-card:hover img {
  transform: scale(1.08);
}

.industry-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 19, 32, 0.92) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.industry-card h3 {
  color: var(--color-white);
  font-size: 1.05rem;
  font-weight: 700;
}

/* Stats bar */
.stats-bar {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a2744 100%);
  color: var(--color-white);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

@media (max-width: 768px) {
  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-item__value {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.stat-item__label {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Process timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin-inline: auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-accent), rgba(245, 183, 0, 0.2));
}

@media (min-width: 769px) {
  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

@media (max-width: 768px) {
  .timeline__item {
    grid-template-columns: 1fr;
    padding-left: 3.5rem;
  }
}

.timeline__dot {
  position: absolute;
  left: 14px;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 4px solid var(--color-bg);
  box-shadow: 0 0 0 2px var(--color-primary);
}

@media (min-width: 769px) {
  .timeline__dot {
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline__item:nth-child(odd) .timeline__content {
    text-align: right;
    padding-right: 2.5rem;
  }

  .timeline__item:nth-child(even) .timeline__content {
    grid-column: 2;
    padding-left: 2.5rem;
  }

  .timeline__item:nth-child(odd) .timeline__spacer {
    grid-column: 2;
  }

  .timeline__item:nth-child(even) .timeline__spacer {
    grid-column: 1;
    order: -1;
  }
}

.timeline__content {
  background: var(--color-white);
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(11, 19, 32, 0.06);
}

.timeline__step {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

/* Testimonials */
.testimonials {
  position: relative;
}

.testimonial-slider {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 0.5rem;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(11, 19, 32, 0.06);
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.testimonial-card__stars {
  color: var(--color-accent);
  margin-bottom: 1rem;
  letter-spacing: 0.15em;
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--color-primary);
  margin: 0 0 1.25rem;
  line-height: 1.45;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-card span {
  display: block;
  font-size: 0.85rem;
  color: var(--color-muted);
  font-weight: 500;
  margin-top: 0.25rem;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.testimonial-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid rgba(11, 19, 32, 0.1);
  color: var(--color-primary);
  display: grid;
  place-items: center;
  transition: background var(--transition), color var(--transition);
}

.testimonial-nav button:hover {
  background: var(--color-primary);
  color: var(--color-accent);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid rgba(11, 19, 32, 0.08);
}

.faq-item__question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  transition: color var(--transition);
}

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

.faq-item__question i {
  transition: transform 0.3s ease;
  color: var(--color-accent);
}

.faq-item.is-open .faq-item__question i {
  transform: rotate(180deg);
}

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

.faq-item__answer-inner {
  padding-bottom: 1.25rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* CTA band */
.cta-band {
  position: relative;
  background: linear-gradient(120deg, var(--color-primary) 0%, #1e3a5f 50%, var(--color-primary-2) 100%);
  color: var(--color-white);
  padding-block: clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F5B700' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin-bottom: 1.5rem;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Footer */
.site-footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.82);
  padding-block: 4rem 2rem;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

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

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand p {
  font-size: 0.92rem;
  margin-top: 1rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.65rem;
}

.footer-col ul a {
  font-size: 0.92rem;
}

.footer-contact li {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  font-size: 0.92rem;
}

.footer-contact i {
  color: var(--color-accent);
  margin-top: 0.2rem;
}

.social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  transition: background var(--transition), color var(--transition);
}

.social-row a:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

/* Page hero inner pages */
.page-hero {
  padding-top: calc(var(--header-h) + 3rem + env(safe-area-inset-top, 0px));
  padding-bottom: 3rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, #152238 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(245, 183, 0, 0.15), transparent 45%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
}

.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.65);
}

.breadcrumb a:hover {
  color: var(--color-accent);
}

/* Forms */
.form-grid {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--color-primary);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(11, 19, 32, 0.12);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(245, 183, 0, 0.2);
}

.form-field input.is-invalid,
.form-field textarea.is-invalid {
  border-color: #dc2626;
}

.field-error {
  font-size: 0.78rem;
  color: #dc2626;
  margin-top: 0.25rem;
  display: none;
}

.form-field input.is-invalid + .field-error,
.form-field textarea.is-invalid + .field-error {
  display: block;
}

/* Contact layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

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

.contact-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(11, 19, 32, 0.06);
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  height: 280px;
  background: #e5e7eb;
  border: 1px solid rgba(11, 19, 32, 0.08);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Floating buttons */
.fab-whatsapp {
  position: fixed;
  right: calc(1.25rem + env(safe-area-inset-right, 0px));
  bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  z-index: 850;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease;
}

.fab-whatsapp:hover {
  transform: scale(1.08);
}

.back-to-top {
  position: fixed;
  right: calc(1.25rem + env(safe-area-inset-right, 0px));
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  z-index: 850;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-primary);
  color: var(--color-accent);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-primary-2);
}

/* Service detail blocks (inner pages) */
.service-detail {
  margin-bottom: 4rem;
}

.service-detail__hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  margin-bottom: 2rem;
}

.service-detail__hero img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.service-detail__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 19, 32, 0.92), rgba(11, 19, 32, 0.45));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.service-detail__hero-overlay h2 {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.service-detail__hero-overlay p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
}

.detail-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

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

.detail-box {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(11, 19, 32, 0.06);
  box-shadow: var(--shadow-sm);
}

.detail-box h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail-box h3 i {
  color: var(--color-accent);
}

.detail-box ul li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
  color: var(--color-muted);
}

.detail-box ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* Utilities */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: no-preference) {
  .hero__main > * {
    animation: heroFadeUp 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
  }

  .hero__title {
    animation-delay: 0.08s;
  }

  .hero__subtitle {
    animation-delay: 0.18s;
  }

  .hero__actions {
    animation-delay: 0.28s;
  }

  .hero__trust {
    animation-delay: 0.38s;
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@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;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero__bg img {
    transform: none !important;
  }
}
