@font-face {
  font-family: "Never Say Die";
  src: url("../fonts/neversaydie.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand: #ea580c;
  --brand-dark: #c2410c;
  --brand-light: #fff7ed;
  --ink: #111827;
  --ink-soft: #1f2937;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-400: #9ca3af;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --radius: 12px;
  --shadow-card: 0 1px 3px rgba(17, 24, 39, 0.06), 0 8px 24px -12px rgba(17, 24, 39, 0.15);
  --shadow-card-hover: 0 12px 32px -12px rgba(234, 88, 12, 0.35);
  --header-h: 92px;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Bungee", "Inter", cursive;
  --font-hero-title: "Never Say Die", "Bungee", "Inter", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-x: hidden;
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-soft);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-400) var(--gray-100);
}

body.nav-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--brand);
}

body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track {
  background: var(--gray-100);
}
body::-webkit-scrollbar-thumb {
  background: var(--gray-400);
  border-radius: 10px;
  border: 2px solid var(--gray-100);
}
body::-webkit-scrollbar-thumb:hover {
  background: var(--gray-600);
}

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

.w-4,
.w-5,
.w-6,
.w-7,
.w-8 {
  flex-shrink: 0;
}

.w-4 {
  width: 16px;
}
.w-5 {
  width: 20px;
}
.w-6 {
  width: 24px;
}
.w-7 {
  width: 28px;
}
.w-8 {
  width: 32px;
}
.h-4 {
  height: 16px;
}
.h-5 {
  height: 20px;
}
.h-6 {
  height: 24px;
}
.h-7 {
  height: 28px;
}
.h-8 {
  height: 32px;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
  margin: 0;
}

p {
  margin: 0;
}

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

.container-narrow {
  max-width: 1152px;
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(17, 24, 39, 0.08);
  border-bottom-color: var(--gray-200);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
}

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 6px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f97316 0%, var(--brand) 100%);
  color: var(--white);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--gray-900);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .brand-name {
    font-size: 1.5rem;
  }
}

.brand-tagline {
  display: none;
  font-size: 0.75rem;
  color: var(--gray-600);
  font-family: var(--font-body);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .brand-tagline {
    display: block;
  }
}

.main-nav {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.2s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--brand);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316 0%, var(--brand) 100%);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 6px 16px -6px rgba(234, 88, 12, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-phone:hover {
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -6px rgba(234, 88, 12, 0.65);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--gray-800, var(--gray-900));
  cursor: pointer;
}

.menu-toggle:hover {
  background: var(--gray-100);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
  padding: 8px 20px 16px;
  max-height: calc(100svh - var(--header-h));
  overflow-y: auto;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav-link {
  display: block;
  padding: 14px 4px;
  min-height: 44px;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}

.mobile-nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  border-bottom: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
}

@media (min-width: 768px) {
  .header-phone {
    display: flex;
  }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

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

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-block {
  width: 100%;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #111827 0%, #1f2937 50%, #111827 100%);
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.6s ease, transform 9s ease-out;
}

.hero-slide[data-active="true"] {
  opacity: 1;
  transform: scale(1);
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.78) 0%, rgba(17, 24, 39, 0.62) 45%, rgba(17, 24, 39, 0.85) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: radial-gradient(circle at 20% 20%, rgba(234, 88, 12, 0.22), transparent 45%),
    radial-gradient(circle at 80% 75%, rgba(234, 88, 12, 0.16), transparent 50%);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: opacity 1.6s ease;
    transform: none;
  }
}

.hero-inner {
  position: relative;
  z-index: 10;
  padding: 128px 16px;
  max-width: 1024px;
  text-align: center;
  margin: 0 auto;
}

.hero-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  column-gap: 0.3em;
  row-gap: 0.05em;
  font-family: var(--font-hero-title);
  font-size: 2.5rem;
  color: #f97316;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin: 0 0 16px;
}

.hero-title-word {
  white-space: nowrap;
}

.hero-title .tr-um,
.hero-title .tr-dot {
  position: relative;
  display: inline-block;
}

.hero-title .tr-um::before,
.hero-title .tr-um::after,
.hero-title .tr-dot::before {
  content: "";
  position: absolute;
  top: -0.08em;
  width: 0.1em;
  height: 0.1em;
  border-radius: 50%;
  background: currentColor;
}

.hero-title .tr-um::before {
  left: 0.13em;
}

.hero-title .tr-um::after {
  right: 0.13em;
}

.hero-title .tr-dot::before {
  left: 50%;
  transform: translateX(-50%);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #d1d5db;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 24px;
}

.hero-text {
  color: #d1d5db;
  font-size: 1.125rem;
  line-height: 1.625;
  max-width: 768px;
  margin: 0 auto 40px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
  .hero-subtitle {
    font-size: 1.875rem;
  }
  .hero-text {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 5rem;
  }
  .hero-subtitle {
    font-size: 2.25rem;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  margin: 0 0 64px;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 768px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(4px);
}

.stat-icon {
  width: 40px;
  height: 40px;
  color: #f97316;
  margin: 0 auto 12px;
  display: block;
}

.stat-value {
  color: var(--white);
  font-size: 1.875rem;
  font-weight: 700;
  margin: 0 0 4px;
}

.stat-label {
  color: #9ca3af;
  font-size: 0.875rem;
  margin: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 8px 0;
}

.hero-scroll-dot {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  animation: hero-scroll-bounce 1.8s ease-in-out infinite;
}

@keyframes hero-scroll-bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(8px);
    opacity: 0.4;
  }
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* ---------- Sections ---------- */

.section {
  padding: 80px 0;
}

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

.section-head {
  text-align: center;
  margin: 0 auto 56px;
}

.section-head-lg {
  margin-bottom: 64px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 16px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  color: var(--gray-600);
  font-size: 1.25rem;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.5;
}

/* ---------- Services ---------- */

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

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 32px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.12);
  border-color: #f97316;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: var(--brand-light);
  color: var(--brand);
  margin-bottom: 24px;
  transition: background-color 0.3s ease;
}

.service-card:hover .service-icon {
  background: #ffedd5;
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray-600);
  line-height: 1.6;
  font-size: 0.9rem;
  margin: 0;
}

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

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.about-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.about-text {
  color: var(--gray-600);
  line-height: 1.625;
  margin-bottom: 16px;
  white-space: pre-line;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 20px;
  transition: border-color 0.2s ease;
}

.value-card:hover {
  border-color: #f97316;
}

.value-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
}

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

/* ---------- Gallery ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--gray-100);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  border: none;
  padding: 0;
  display: block;
  width: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
}

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

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-item-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 18, 0.94);
}

.lightbox-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.lightbox-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  color: var(--white);
}

.lightbox-counter {
  font-size: 0.9rem;
  font-weight: 600;
  color: #d1d5db;
}

.lightbox-toolbar-actions {
  display: flex;
  gap: 8px;
}

.lightbox-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.lightbox-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 72px 24px;
  min-height: 0;
}

.lightbox-stage img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 2;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.18);
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

@media (max-width: 640px) {
  .lightbox-stage {
    padding: 0 8px 16px;
  }
  .lightbox-nav {
    width: 40px;
    height: 40px;
  }
  .lightbox-prev {
    left: 6px;
  }
  .lightbox-next {
    right: 6px;
  }
}

/* ---------- Contact ---------- */

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

.contact-info {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--brand-light);
  color: var(--brand);
  flex-shrink: 0;
}

.contact-info li > div {
  min-width: 0;
}

.contact-info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
}

.contact-info-link:hover {
  color: var(--brand);
}

.contact-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  background: var(--brand-light);
  border-radius: 16px;
  justify-content: center;
}

.contact-cta-text {
  color: var(--ink-soft);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 0 4px;
}

.contact-cta-btn {
  font-size: 1.0625rem;
  padding: 16px 24px;
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1da851;
}

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

/* ---------- Footer ---------- */

.site-footer {
  background: linear-gradient(to bottom, #111827, #030712);
  color: #d1d5db;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  padding: 64px 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
}

.footer-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #9ca3af;
}

.footer-heading {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-links a {
  color: #9ca3af;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--brand);
}

.footer-contact {
  color: #9ca3af;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  text-align: center;
  font-size: 0.78rem;
  color: #6b7280;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- 404 ---------- */

.not-found {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.not-found-inner {
  text-align: center;
}

.not-found-code {
  font-size: 4.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--brand);
  line-height: 1;
  margin-bottom: 8px;
}

.not-found h1 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.not-found p:not(.not-found-code) {
  color: var(--gray-600);
  margin-bottom: 24px;
}

/* ---------- WhatsApp floating button ---------- */

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 150;
  animation: whatsapp-heartbeat 1.8s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: #1da851;
}

@keyframes whatsapp-heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.12);
  }
  30% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.12);
  }
  60% {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    animation: none;
  }
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}
