:root {
  --bg-light: #F6F9FB;
  --bg-about: #00051E;
  --bg-services: linear-gradient(180deg, #111827 0%, #0D1420 100%);
  --bg-contact: #000516;
  --bg-footer: #001A37;
  --accent: #1414DC;
  --accent-soft: #1414DC26;
  --blue: #006CFF;
  --white: #FFFFFF;
  --gray-100: #E4E4E7;
  --gray-400: #A1A1AA;
  --gray-500: #71717B;
  --text-dim: #FFFFFF99;
  --text-dim2: #FFFFFFCC;
  --card-bg: #FFFFFF0A;
  --card-border: #FFFFFF14;
  --card-border-hover: #FFFFFF26;
  --glass-bg: rgba(41, 41, 41, 0.61);
  --nav-bg: rgba(255, 255, 255, 0.92);
  --nav-border: #DBDFE2;
  --font: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-display: 'Manrope', system-ui, sans-serif;
  --font-mono: 'Geist Mono', 'SF Mono', 'Fira Code', monospace;
  --font-footer-head: 'Barlow Condensed', 'Manrope', system-ui, sans-serif;
  --font-footer: 'Barlow', 'Manrope', system-ui, sans-serif;
  --max-w: 1200px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════ NAV ═══════════ */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.8px solid var(--nav-border);
  z-index: 100;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img,
.nav-logo .custom-logo {
  max-height: 48px;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.28px;
  color: #0D0A0B;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.nav-links a:hover {
  background: rgba(0, 0, 0, 0.05);
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: var(--radius) !important;
  font-weight: 500 !important;
  transition: background 0.25s, transform 0.25s !important;
}

.nav-cta:hover {
  background: #1e1ef0 !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0D0A0B;
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ═══════════ MOBILE OVERLAY ═══════════ */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--white);
  flex-direction: column;
  overflow-y: auto;
}

.mobile-overlay.open {
  display: flex;
}

.mobile-overlay-top {
  display: flex;
  overflow: clip;
  align-items: center;
  gap: 126px;
  padding: 24px 16px 16px;
  width: 396px;
  max-width: 100%;
  flex-shrink: 0;
  font-size: 12px;
  line-height: 16px;
}

.mobile-overlay:not(.closing) .mobile-overlay-top {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.5s cubic-bezier(0.2, 0, 0, 1), transform 0.5s cubic-bezier(0.2, 0, 0, 1);
}

.mobile-overlay.open .mobile-overlay-top {
  opacity: 1;
  transform: translateY(0);
}

.mobile-overlay.closing .mobile-overlay-top {
  opacity: 0;
  transition: none;
}

.mobile-overlay-logo {
  height: 102px;
  max-width: 100%;
  width: 167px;
  flex-shrink: 0;
  background-color: #fff;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.mobile-overlay-close {
  background: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-500);
  padding: 0;
}

.mobile-overlay-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 24px 24px 32px;
  flex: 1;
}

.mobile-overlay-link {
  position: relative;
  display: inline-block;
}

.mobile-overlay:not(.closing) .mobile-overlay-link {
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.2, 0, 0, 1);
}

.mobile-overlay.open .mobile-overlay-link {
  opacity: 1;
}

.mobile-overlay.closing .mobile-overlay-link {
  opacity: 0;
  transition: none;
}

.mobile-overlay-link a {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: #0D0A0B;
  transition: color 0.2s;
}

.mobile-overlay-link a:hover {
  color: var(--accent);
}

.mobile-overlay-social {
  display: flex;
  padding: 32px 24px;
  flex-shrink: 0;
}

.mobile-overlay-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  border-radius: 14px;
}

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 64px;
  overflow: hidden;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 16s infinite;
}

.hero-slide:nth-child(1) {
  animation-delay: 0s;
}

.hero-slide:nth-child(2) {
  animation-delay: 4s;
}

.hero-slide:nth-child(3) {
  animation-delay: 8s;
}

.hero-slide:nth-child(4) {
  animation-delay: 12s;
}

@keyframes heroFade {

  0%,
  100% {
    opacity: 0;
  }

  8%,
  25% {
    opacity: 1;
  }

  33%,
  100% {
    opacity: 0;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 112%;
  text-transform: uppercase;
  text-align: center;
  text-wrap: balance;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.35);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.32px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, border-color 0.25s;
}

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

.btn-hero-primary:hover {
  background: #1e1ef0;
  transform: translateY(-1px);
}

.btn-hero-secondary {
  background: var(--card-bg);
  border: 0.8px solid var(--card-border);
  color: var(--white);
}

.btn-hero-secondary:hover {
  background: rgba(20, 20, 220, 0.15);
  border-color: rgba(20, 20, 220, 0.4);
  transform: translateY(-1px);
}

/* ═══════════ SOBRE ═══════════ */
.section-about {
  background: var(--bg-about);
  padding: 128px 24px;
}

.about-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  line-height: 110%;
  text-align: center;
  color: var(--white);
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  margin-top: 48px;
}

.about-card {
  display: flex;
  flex-direction: column;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  gap: 20px;
  background: var(--card-bg);
  border: 0.8px solid var(--card-border);
}

.about-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-soft);
  flex-shrink: 0;
}

.about-card-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 130%;
  color: var(--white);
}

.about-card-desc {
  font-size: 15px;
  line-height: 160%;
  color: var(--text-dim);
}

.button-row {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.button-row::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 152px;
  height: 36px;
  border-radius: 999px;
  background: rgba(20, 20, 220, 0.16);
  filter: blur(16px);
  transform: translateX(-50%) scaleY(-1);
  pointer-events: none;
  z-index: 0;
}

.btn-ghost {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.32px;
  background: var(--card-bg);
  border: 0.8px solid var(--card-border);
  color: var(--white);
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.btn-ghost:hover {
  background: rgba(20, 20, 220, 0.15);
  border-color: rgba(20, 20, 220, 0.4);
  transform: translateY(-1px);
}

/* ═══════════ SERVIÇOS ═══════════ */
.section-services {
  background: var(--bg-services);
  padding: 128px 0;
  overflow: hidden;
}

.services-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.services-header {
  margin-bottom: 40px;
  padding: 0 4px;
}

.services-header .section-title {
  text-align: left;
}

.services-subtitle {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.24px;
  line-height: 160%;
  color: var(--white);
  margin-top: 4px;
}

.services-desc {
  font-size: 16px;
  line-height: 160%;
  color: var(--text-dim);
  max-width: 600px;
  margin-top: 12px;
}

.services-carousel-area {
  position: relative;
  width: 100%;
  margin-top: 48px;
  padding: 0 72px;
}

.services-carousel-viewport {
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}

.services-carousel {
  display: flex;
  gap: 24px;
  width: max-content;
  transition: transform 480ms cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card {
  flex-shrink: 0;
  width: 420px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15), 0 1px 4px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 400ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 400ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), 0 8px 24px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.12);
  z-index: 2;
}

.services-carousel:hover .service-card:not(:hover) {
  opacity: 0.7;
}

/* Nav Arrows */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(17, 24, 39, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background 300ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-nav-btn svg {
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-nav-btn:hover {
  background: rgba(17, 24, 39, 0.85);
  border-color: rgba(255, 255, 255, 0.2);
}

.carousel-nav-btn:hover svg {
  transform: translateX(2px);
}

.carousel-prev:hover svg {
  transform: translateX(-2px);
}

.carousel-nav-btn:active {
  transform: translateY(-50%) scale(0.96);
}

.carousel-nav-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

.carousel-prev {
  left: 8px;
}

.carousel-next {
  right: 8px;
}

/* Pagination Dots */
.services-carousel-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.carousel-dot {
  width: 8px;
  min-width: 8px;
  max-width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: min-width 350ms cubic-bezier(0.16, 1, 0.3, 1),
    max-width 350ms cubic-bezier(0.16, 1, 0.3, 1),
    width 350ms cubic-bezier(0.16, 1, 0.3, 1),
    background 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-dot.active {
  width: 32px;
  min-width: 32px;
  max-width: 32px;
  background: var(--white);
}

.carousel-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.4);
}

/* Service Cards — Inner Elements */
.service-image-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  margin-bottom: 0;
}

.service-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-image {
  transform: scale(1.05);
  filter: brightness(1.06) contrast(1.02);
}

.service-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.06) 100%);
  opacity: 0;
  transition: opacity 400ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.service-card:hover .service-image-wrap::after {
  opacity: 1;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 22px;
  gap: 12px;
  overflow: visible;
}

.service-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.3px;
  line-height: 133%;
  color: var(--white);
  margin: 0;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.service-tag {
  padding: 4px 12px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  flex-shrink: 0;
  white-space: nowrap;
}

.service-tag span {
  font-size: 11px;
  line-height: 140%;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #E5E7EB;
}

/* ═══════════ CONTACTOS ═══════════ */
.section-contact {
  background: var(--bg-contact);
  padding: 128px 24px;
}

.contact-inner {
  max-width: 1024px;
  margin: 0 auto;
}

.contact-header {
  margin-bottom: 64px;
}

.contact-header .section-title {
  margin-bottom: 16px;
}

.contact-desc {
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto;
}

.contact-card {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
  padding: 48px;
  border-radius: 15px;
  background: var(--glass-bg);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-sm);
}

.contact-info-item svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  overflow: hidden;
}

.contact-info-item svg path,
.contact-info-item svg rect,
.contact-info-item svg circle,
.contact-info-item svg line {
  stroke: var(--white);
}

.contact-info-text {
  font-size: 16px;
  line-height: 150%;
  color: var(--white);
}

.contact-info-text a {
  color: var(--white);
  transition: color 0.2s;
}

.contact-info-text a:hover {
  color: var(--accent);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-label-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  line-height: 160%;
  font-weight: 500;
  color: var(--white);
}

.form-required {
  font-size: 14px;
  line-height: 160%;
  font-weight: 500;
  color: oklch(57.7% 0.245 27.3);
}

.form-input-wrap {
  display: flex;
  align-items: center;
  height: 44px;
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 0.8px solid var(--gray-100);
}

.form-input-wrap input,
.form-input-wrap textarea {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  padding: 4px 10px;
  font-family: var(--font);
  font-size: 14px;
  line-height: 150%;
  color: var(--white);
}

.form-input-wrap input::placeholder,
.form-input-wrap textarea::placeholder {
  color: var(--gray-500);
}

.form-textarea-wrap {
  display: flex;
  min-height: 100px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 0.8px solid var(--gray-100);
}

.form-textarea-wrap textarea {
  width: 100%;
  min-height: 100px;
  resize: vertical;
  border: none;
  outline: none;
  background: transparent;
  padding: 8px 10px;
  font-family: var(--font);
  font-size: 14px;
  line-height: 150%;
  color: var(--white);
}

.form-textarea-wrap textarea::placeholder {
  color: var(--gray-500);
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 100%;
  border-radius: var(--radius-sm);
  background: var(--accent);
  border: 0.8px solid rgba(20, 20, 220, 0.25);
  color: #FAFAFA;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.form-submit:hover {
  background: #1e1ef0;
  transform: translateY(-1px);
}

.contact-map {
  height: 310px;
  width: 100%;
  margin-top: 64px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%);
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  background: var(--bg-footer);
  padding: 48px 24px;
}



.footer-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 0.8px solid rgba(229, 231, 235, 0.3);
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-brand-name {
  font-family: var(--font-footer-head);
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 150%;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--white);
}

.footer-brand-sub {
  font-family: var(--font-footer);
  font-size: 14px;
  line-height: 150%;
  color: var(--text-dim2);
  margin-top: 4px;
}

.footer-brand-logo {
  margin-top: 4px;
  max-width: 280px;
  height: 28px;
  opacity: 0.9;
  filter: brightness(0) invert(1);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.footer-col-title {
  font-family: var(--font-footer-head);
  font-size: 15px;
  letter-spacing: 0.75px;
  line-height: 150%;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col-links a {
  font-family: var(--font-footer);
  font-size: 14px;
  line-height: 150%;
  color: var(--text-dim2);
  transition: color 0.2s;
}

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

.footer-social {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.footer-social svg {
  width: 24px;
  height: 24px;
  fill: rgba(255, 255, 255, 0.8);
}

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

.footer-bottom p {
  font-family: var(--font-footer);
  font-size: 15px;
  line-height: 150%;
  color: var(--text-dim2);
}

.footer-bottom a {
  color: var(--text-dim2);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ═══════════ REVEAL ═══════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal[data-delay="1"] {
  transition-delay: 0.08s;
}

.reveal[data-delay="2"] {
  transition-delay: 0.16s;
}

.reveal[data-delay="3"] {
  transition-delay: 0.24s;
}

.reveal[data-delay="4"] {
  transition-delay: 0.32s;
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (min-width: 901px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 900px) {
  .contact-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 32px;
  }

  .footer-top {
    flex-wrap: wrap;
    gap: 32px;
  }

  .footer-brand-col {
    flex: 0 0 100%;
  }

  .about-cards {
    grid-template-columns: 1fr 1fr;
  }

  .service-card {
    width: 340px;
  }

  .services-carousel-area {
    padding: 0 64px;
  }

  .carousel-nav-btn {
    width: 44px;
    height: 44px;
  }

  .carousel-nav-btn svg {
    width: 18px;
    height: 18px;
  }

  .carousel-prev {
    left: 6px;
  }

  .carousel-next {
    right: 6px;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    min-height: 100vh;
    padding-bottom: 32px;
  }

  .hero-title {
    font-size: clamp(28px, 7vw, 40px);
    letter-spacing: -0.5px;
  }

  section,
  .section-about,
  .section-contact {
    padding: 80px 24px;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }

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

  .footer-top {
    gap: 24px;
    text-align: center;
  }

  .footer-brand-col {
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }

  .section-services {
    padding: 80px 0;
  }

  .services-inner {
    padding: 0;
  }

  .services-header {
    padding: 0 20px;
  }

  .services-carousel-area {
    padding: 0 56px;
  }

  .carousel-nav-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-nav-btn svg {
    width: 18px;
    height: 18px;
  }

  .carousel-prev {
    left: 6px;
  }

  .carousel-next {
    right: 6px;
  }

  .service-card {
    width: 280px;
  }

  .service-image-wrap {
    border-radius: 16px 16px 0 0;
  }

  .service-meta {
    padding: 14px 18px;
  }

  .service-title {
    font-size: 17px;
  }

  .services-header .section-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }

  .contact-card {
    padding: 24px 16px;
  }
}

@media (max-width: 400px) {
  .container {
    padding: 0 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none !important;
    opacity: 0 !important;
  }

  .hero-slide:first-child {
    opacity: 1 !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .service-card {
    transition: none !important;
  }
}