:root {
  --navy-950: #07111f;
  --navy-900: #0a1628;
  --navy-850: #0e2038;
  --navy-800: #112942;
  --blue-600: #147cc2;
  --orange-600: #f97316;
  --orange-700: #ea580c;
  --whatsapp: #25D366;
  --whatsapp-hover: #1EBE57;
  --white: #ffffff;
  --surface: #f6f8fb;
  --surface-strong: #eef3f8;
  --text: #142033;
  --muted: #637083;
  --border: #dfe7ef;
  --shadow-sm: 0 8px 20px rgba(7, 17, 31, 0.07);
  --shadow-md: 0 14px 34px rgba(7, 17, 31, 0.12);
  --radius: 8px;
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg,
iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--orange-600);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(7, 17, 31, 0.96);
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 17, 31, 0.96);
  box-shadow: none;
}

.header-inner {
  position: relative;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: 112px;
  min-height: 50px;
}

.brand img {
  width: 112px;
  max-height: 54px;
  object-fit: contain;
}

.site-nav {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: grid;
  gap: 4px;
  max-height: 0;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: rgba(10, 22, 40, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: none;
  pointer-events: none;
  transition: max-height 0.25s ease, padding 0.25s ease;
}

body.menu-open .site-nav {
  max-height: 360px;
  padding: 10px;
  pointer-events: auto;
}

.site-nav a {
  padding: 13px 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.header-phone,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 8px;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: currentColor;
  fill: currentColor;
  stroke: none;
  shape-rendering: geometricPrecision;
}

.header-phone {
  width: 44px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

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

.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.btn {
  min-width: 46px;
  padding: 0 16px;
  border: 1px solid transparent;
}

.btn:hover,
.header-phone:hover,
.menu-toggle:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--orange-600);
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.26);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--orange-700);
  outline: none;
}

.btn-whatsapp {
  color: var(--white);
  background: var(--whatsapp);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
}

.whatsapp-btn {
  gap: 10px;
}

.header-wa {
  min-height: 46px;
  padding: 0;
}

.header-wa .whatsapp-icon {
  width: 20px;
  height: 20px;
}

.hero-whatsapp .whatsapp-icon {
  width: 20px;
  height: 20px;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: var(--whatsapp-hover);
  outline: none;
}

section {
  padding: 62px 0;
}

main > section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(10, 22, 40, 0.96), rgba(7, 17, 31, 0.98)),
    var(--navy-900);
}

.section-light {
  background: var(--surface);
}

.section-white {
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 0;
  height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 24px 0 30px;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.96) 0%, rgba(7, 17, 31, 0.86) 42%, rgba(7, 17, 31, 0.44) 72%, rgba(7, 17, 31, 0.28) 100%),
    url("img/akd-hero-bg.jpg") center right / cover no-repeat;
}

.hero::before {
  content: "";
  display: none;
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.hero-grid,
.about-grid,
.contact-grid,
.faq-grid {
  position: relative;
  display: grid;
  gap: 28px;
}

.hero-grid {
  width: 100%;
  justify-items: start;
}

.hero-copy {
  width: min(100%, 660px);
  max-width: 660px;
  padding: 24px;
  margin-left: clamp(0px, 2.5vw, 34px);
  background: rgba(7, 17, 31, 0.22);
  border-radius: var(--radius);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 12px;
  color: var(--orange-600);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.section-copy h2,
.contact-info h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 4.4vw, 3.6rem);
  font-weight: 800;
}

.hero p,
.section-heading p,
.section-copy p,
.contact-info p {
  margin: 18px 0 0;
  color: inherit;
  opacity: 0.82;
  font-size: 1.04rem;
}

.hero p {
  max-width: 620px;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-actions .btn {
  min-height: 52px;
  width: 100%;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  font-weight: 800;
}

.trust-badges svg {
  color: var(--orange-600);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.hero-stats div {
  min-height: 66px;
  padding: 11px 13px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.hero-stats strong {
  display: block;
  color: var(--white);
  font-size: 1.22rem;
  line-height: 1.1;
  font-weight: 800;
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.section-copy h2,
.contact-info h2 {
  font-size: 2rem;
  font-weight: 800;
}

.section-heading p,
.section-copy p {
  color: var(--muted);
}

.about-grid {
  align-items: center;
}

.about-panel {
  display: grid;
  gap: 12px;
}

.about-panel div {
  min-height: 92px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.about-panel span,
.contact-cards span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.about-panel strong {
  display: block;
  margin-top: 5px;
  color: var(--navy-900);
  font-size: 1.05rem;
}

.service-grid,
.why-grid,
.process-grid,
.testimonial-grid,
.gallery-grid {
  display: grid;
  gap: 16px;
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
}

.service-card,
.why-card,
.process-step,
.testimonial-card {
  height: 100%;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 304px;
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover,
.why-card:hover,
.testimonial-card:hover,
.gallery-grid figure:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.34);
  box-shadow: var(--shadow-md);
}

.service-icon,
.why-card > svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--orange-600);
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: var(--radius);
}

.service-icon svg,
.why-card > svg {
  width: 24px;
  height: 24px;
}

.service-card h3,
.why-card h3,
.process-step h3,
.testimonial-card h3,
.contact-form h3 {
  margin: 18px 0 0;
  color: var(--navy-900);
  font-size: 1.16rem;
  line-height: 1.25;
}

.service-card p,
.why-card p,
.process-step p,
.testimonial-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: auto;
  padding: 0 14px;
  color: var(--navy-900);
  background: var(--surface-strong);
  border-radius: var(--radius);
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease;
}

.service-card a:hover,
.service-card a:focus-visible {
  color: var(--white);
  background: var(--navy-900);
  outline: none;
}

.why-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.why-card {
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.process-grid {
  counter-reset: steps;
}

.process-step {
  position: relative;
  min-height: 190px;
  padding: 24px;
  overflow: hidden;
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius);
  font-weight: 800;
}

.process-step::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: var(--orange-600);
}

.gallery-grid {
  align-items: stretch;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
}

.gallery-grid figcaption {
  padding: 14px 16px;
  color: var(--navy-900);
  font-weight: 800;
}

.testimonial-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.testimonial-card {
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.stars {
  display: flex;
  gap: 3px;
  color: var(--orange-600);
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: currentColor;
}

.testimonial-card strong {
  display: block;
  margin-top: 16px;
  color: var(--navy-900);
}

.faq-grid {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 48px 18px 18px;
  color: var(--navy-900);
  font-weight: 800;
  list-style: none;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--orange-600);
  border-radius: 50%;
  transform: translateY(-50%);
  font-weight: 800;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.contact {
  padding-bottom: 50px;
}

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

.contact-info {
  max-width: 680px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.contact-cards a,
.contact-cards div {
  min-height: 118px;
  padding: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.contact-cards svg {
  width: 24px;
  height: 24px;
  margin-bottom: 12px;
  color: var(--orange-600);
}

.contact-cards .contact-whatsapp {
  display: grid;
  align-content: start;
}

.contact-cards .contact-whatsapp .whatsapp-icon {
  width: 22px;
  height: 22px;
  color: var(--whatsapp);
}

.contact-cards span {
  color: rgba(255, 255, 255, 0.68);
}

.contact-cards strong {
  display: block;
  margin-top: 4px;
  font-size: 1rem;
  line-height: 1.35;
}

.contact-form {
  display: grid;
  gap: 10px;
  padding: 22px;
  color: var(--text);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  margin-top: 0;
}

.contact-form label {
  color: var(--navy-900);
  font-weight: 800;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 128px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(20, 124, 194, 0.12);
}

.contact-form .btn {
  margin-top: 6px;
  min-height: 52px;
}

.whatsapp-submit {
  gap: 10px;
  background: var(--whatsapp);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
}

.whatsapp-submit:hover,
.whatsapp-submit:focus-visible {
  background: var(--whatsapp-hover);
}

.whatsapp-submit .whatsapp-icon {
  width: 18px;
  height: 18px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status.is-error {
  color: #b91c1c;
}

.map-card {
  overflow: hidden;
  min-height: 360px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.map-details {
  display: grid;
  gap: 2px;
  padding: 16px;
  color: var(--white);
}

.map-details span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.map-card iframe {
  width: 100%;
  height: 310px;
  border: 0;
  filter: none;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  gap: 28px;
  padding: 40px 0 28px;
}

.footer-brand img {
  width: 150px;
  max-height: 72px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 420px;
  margin: 16px 0 0;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-top: 8px;
}

.site-footer a {
  transition: color 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--orange-600);
  outline: none;
}

.footer-bottom {
  display: grid;
  gap: 8px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.footer-bottom a {
  display: inline;
  color: var(--white);
  font-weight: 800;
}

.floating-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: grid;
  gap: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(7, 17, 31, 0.2);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.floating-contact__button {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  box-shadow:
    0 12px 26px rgba(7, 17, 31, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.floating-contact__button:hover,
.floating-contact__button:focus-visible {
  transform: translateY(-4px) scale(1.08);
  box-shadow:
    0 16px 34px rgba(7, 17, 31, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  outline: none;
}

.floating-contact__button--phone {
  background: #FF7A00;
}

.floating-contact__button--whatsapp {
  background: #25D366;
}

.floating-contact__icon {
  width: 29px;
  height: 29px;
  color: var(--white);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-contact__icon--whatsapp {
  width: 29px;
  height: 29px;
  fill: currentColor;
  stroke: none;
}

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

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

@media (min-width: 520px) {
  .hero-actions .btn {
    width: auto;
  }

  .gallery-grid img {
    height: 300px;
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
}

@media (min-width: 760px) {
  :root {
    --header-h: 84px;
  }

  .brand {
    width: 144px;
  }

  .brand img {
    width: 144px;
    max-height: 64px;
  }

  .header-phone {
    width: auto;
    padding: 0 14px;
  }

  .header-phone span,
  .header-wa span {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: nowrap;
  }

  .header-wa {
    min-width: auto;
    padding: 0 16px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 5.2vw, 4rem);
  }

  .section-heading h2,
  .section-copy h2,
  .contact-info h2 {
    font-size: 2.35rem;
  }

  .about-grid,
  .faq-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

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

  .gallery-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }

  .gallery-grid img {
    height: 340px;
  }

  .contact-grid {
    grid-template-columns: 1fr 0.88fr;
    align-items: start;
  }

  .map-card {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 0.7fr 0.8fr;
  }
}

@media (min-width: 980px) {
  section {
    padding: 82px 0;
  }

  .header-inner {
    gap: 18px;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    max-height: none;
    overflow: visible;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 8px 9px;
    font-size: 0.9rem;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    padding: 56px 0 72px;
  }

  .hero p {
    font-size: 1.16rem;
  }

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

  .map-card {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1180px) {
  .site-nav a {
    padding: 8px 12px;
    font-size: 0.94rem;
  }

  .header-actions {
    gap: 8px;
  }

}

@media (max-width: 380px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .brand {
    width: 94px;
  }

  .brand img {
    width: 94px;
  }

  .header-actions {
    gap: 4px;
  }

  .header-phone,
  .menu-toggle,
  .btn {
    min-height: 44px;
  }

  .header-phone,
  .menu-toggle {
    width: 42px;
  }

  .header-wa {
    width: 46px;
    min-height: 46px;
  }

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

  .section-heading h2,
  .section-copy h2,
  .contact-info h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 759px) {
  .site-header {
    background: var(--navy-900);
    box-shadow: none;
    border: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .header-inner {
    border: 0;
    box-shadow: none;
  }

  .site-nav {
    border: 0;
    box-shadow: none;
    outline: 0;
    background: var(--navy-900);
  }

  .site-nav a {
    border: 0;
    box-shadow: none;
  }

  .site-header::before,
  .site-header::after,
  .site-nav::before,
  .site-nav::after {
    content: none;
    display: none;
  }

  .hero {
    margin-top: -1px;
    padding: 34px 0 42px;
    height: auto;
    min-height: auto;
    overflow: visible;
    border-top: 0;
    box-shadow: none;
    background:
      linear-gradient(180deg, rgba(7, 17, 31, 0.86) 0%, rgba(7, 17, 31, 0.8) 48%, rgba(7, 17, 31, 0.72) 100%),
      url("img/akd-hero-bg.jpg") 72% center / cover no-repeat;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
    margin-left: 0;
    padding: 0;
    background: transparent;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-stats div {
    min-height: 72px;
    padding: 10px 8px;
  }

  .hero-stats strong {
    font-size: 1.02rem;
  }

  .hero-stats span {
    margin-top: 5px;
    font-size: 0.76rem;
  }

  .hero::before {
    display: none;
  }

  .hero-copy,
  .hero-actions,
  .trust-badges {
    position: relative;
    z-index: 2;
  }

  .floating-contact {
    right: 16px;
    bottom: calc(90px + env(safe-area-inset-bottom));
    gap: 12px;
    padding: 9px;
  }

  .floating-contact__button {
    width: 58px;
    height: 58px;
  }

  .floating-contact__icon {
    width: 26px;
    height: 26px;
  }

  .floating-contact__icon--whatsapp {
    width: 26px;
    height: 26px;
  }

  .site-footer {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 979px) {
  .gallery-grid figure[data-reveal] {
    transform: none;
    transition: none;
  }

  .gallery-grid figure[data-reveal].is-visible {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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