:root {
  --bg: #090c10;
  --bg-soft: #14191f;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.11);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f6f2eb;
  --muted: #9ca6b0;
  --accent: #d6a044;
  --accent-strong: #f0bf66;
  --accent-soft: rgba(214, 160, 68, 0.18);
  --success: #2ad268;
  --success-soft: rgba(42, 210, 104, 0.12);
  --error: #f25c5c;
  --error-soft: rgba(242, 92, 92, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.24);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1200px, calc(100% - 2rem));
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

/* Grain texture overlay for depth */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(214, 160, 68, 0.18), transparent 24%),
    radial-gradient(circle at 85% 16%, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(180deg, #07090d 0%, #0d1117 48%, #090c10 100%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 50;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: #f4ede1;
  color: #101317;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

/* ─── Header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(22px);
  background: rgba(8, 11, 15, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 11, 15, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.26);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.brand-mark {
  width: 72px;
  height: 58px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.brand:hover .brand-mark {
  border-color: rgba(214, 160, 68, 0.3);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.brand-block {
  display: grid;
  gap: 0.1rem;
}

.brand-logo {
  width: 56px;
  height: auto;
  display: block;
}

.brand-text {
  font-weight: 700;
}

.brand-subtext {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--text);
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  color: #15191f;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-strong), #bc8230);
  box-shadow: 0 12px 24px rgba(214, 160, 68, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.header-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.4s ease;
}

.header-cta:hover::before {
  left: 160%;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(214, 160, 68, 0.28);
}

.button,
.header-cta,
.site-nav a,
.nav-toggle,
.floating-whatsapp {
  touch-action: manipulation;
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 6px auto;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ─── Hero ─── */
.hero-section {
  position: relative;
  padding: 4.75rem 0 4rem;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: clip;
}

/* Diagonal accent stripe */
.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(214, 160, 68, 0.3) 40%, transparent);
  pointer-events: none;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(214, 160, 68, 0.16), transparent 24%),
    linear-gradient(90deg, transparent 0 84%, rgba(255, 255, 255, 0.03) 84% 85%, transparent 85%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.75rem;
  align-items: center;
  position: relative;
}

.hero-content,
.hero-visual,
.about-copy,
.about-panel,
.contact-info-panel,
.contact-form-panel,
.footer-brand-block,
.footer-column {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  flex-shrink: 0;
}

.hero-content h1,
.section-heading h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-content h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  max-width: 11ch;
}

.hero-text {
  max-width: 58ch;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
}

.hero-intro-card {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.3rem;
}

.hero-intro-card span {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: default;
  pointer-events: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.45s ease;
}

.button:hover::before {
  left: 160%;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button-primary {
  background: linear-gradient(135deg, #e4b96b 0%, #be8431 100%);
  color: #101317;
  box-shadow: 0 18px 28px rgba(214, 160, 68, 0.18);
}

.button-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(214, 160, 68, 0.3);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.hero-metrics article,
.card-surface,
.service-card,
.visual-card {
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-metrics article {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.hero-metrics strong {
  display: block;
  font-size: 1.12rem;
  font-family: "Space Grotesk", sans-serif;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-card {
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 160, 68, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.visual-card {
  position: relative;
  padding: 1.4rem;
  border-radius: calc(var(--radius-lg) + 4px);
  overflow: hidden;
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 40%);
  pointer-events: none;
}

.visual-badge {
  display: inline-flex;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #f7d8a1;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-placeholder {
  width: 100%;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 14px,
      rgba(255, 255, 255, 0.01) 14px,
      rgba(255, 255, 255, 0.01) 28px
    );
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
  padding: 1.5rem;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.project-placeholder {
  min-height: 240px;
}

.visual-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.visual-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.visual-status {
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-showcase {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(160deg, rgba(214, 160, 68, 0.12), transparent 32%);
}

.hero-image-frame {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: #0b0f14;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: border-color 0.35s ease, transform 0.35s ease;
}

.hero-image-frame::before,
.hero-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-image-frame::before {
  background:
    linear-gradient(180deg, rgba(8, 11, 15, 0.04) 0%, rgba(8, 11, 15, 0.1) 38%, rgba(8, 11, 15, 0.5) 100%),
    linear-gradient(135deg, rgba(214, 160, 68, 0.14), transparent 42%);
}

.hero-image-frame::after {
  background:
    radial-gradient(circle at 76% 18%, rgba(214, 160, 68, 0.24), transparent 18%),
    radial-gradient(circle at 12% 86%, rgba(255, 255, 255, 0.09), transparent 16%);
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
  object-position: 56% 30%;
  filter: contrast(1.08) saturate(0.92) brightness(0.88);
  transform: scale(1.045);
  transition: transform 0.5s ease, filter 0.35s ease;
}

.visual-details span,
.project-copy p,
.about-copy p,
.contact-card p {
  color: var(--muted);
}

.visual-details strong {
  display: block;
  margin-top: 0.35rem;
}

.section-block {
  padding: 2.5rem 0 5.75rem;
}

.section-shell {
  display: grid;
  gap: 2rem;
}

.section-heading {
  display: grid;
  gap: 0.9rem;
  max-width: 70ch;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.section-subtitle {
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.02rem;
}

/* ─── About ─── */
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.card-surface {
  border-radius: var(--radius-lg);
  padding: 1.7rem;
  box-shadow: var(--shadow-soft);
}

.about-section .section-heading {
  max-width: 74ch;
}

.about-content-panel,
.about-visual-panel {
  position: relative;
  min-height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.about-content-panel:hover,
.about-visual-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 160, 68, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.about-kicker {
  margin: 0 0 1rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.about-kicker::before {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  flex-shrink: 0;
}

.about-copy h3 {
  margin: 0;
  max-width: 18ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.about-copy p {
  margin: 1.25rem 0 0;
  font-size: 1rem;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.7rem;
}

.about-point {
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.about-point:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 160, 68, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.about-point strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 0.4rem;
}

.about-point span {
  color: var(--muted);
  font-size: 0.94rem;
}

.about-visual-panel {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    linear-gradient(160deg, rgba(214, 160, 68, 0.1), transparent 34%);
}

.about-visual-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.about-panel-label {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-image-frame {
  min-height: 500px;
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: #0b0f14;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: border-color 0.35s ease, transform 0.35s ease;
}

.about-image-frame::before,
.about-image-frame::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: 1;
  pointer-events: none;
}

.about-image-frame::before {
  width: 170px;
  height: 170px;
  top: 26px;
  right: -36px;
  background: rgba(214, 160, 68, 0.16);
}

.about-image-frame::after {
  width: 120px;
  height: 120px;
  left: 24px;
  bottom: 24px;
  background: rgba(255, 255, 255, 0.05);
}

.about-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.04) saturate(0.92) brightness(0.9);
  transform: scale(1.02);
  transition: transform 0.45s ease, filter 0.3s ease;
}

.about-overlay-card {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 8.4rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(10, 13, 17, 0.86);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.about-overlay-card span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.about-overlay-card strong {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.3;
}

.about-feature-list {
  margin-top: 1.2rem;
  padding-left: 1.1rem;
}

.about-panel h3,
.project-copy h3,
.contact-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: "Space Grotesk", sans-serif;
}

.feature-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.feature-list li + li {
  margin-top: 0.7rem;
}

/* ─── Services ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

/* Stagger animation for service cards */
.services-grid .service-card:nth-child(1) { transition-delay: 0ms; }
.services-grid .service-card:nth-child(2) { transition-delay: 60ms; }
.services-grid .service-card:nth-child(3) { transition-delay: 120ms; }
.services-grid .service-card:nth-child(4) { transition-delay: 180ms; }

/* ─── Regions ─── */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.region-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    linear-gradient(150deg, rgba(214, 160, 68, 0.08), transparent 36%);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* Subtle corner accent */
.region-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right, rgba(214, 160, 68, 0.12), transparent 70%);
  pointer-events: none;
}

.region-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 160, 68, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    linear-gradient(150deg, rgba(214, 160, 68, 0.12), transparent 38%);
}

.region-card h3 {
  margin-top: 0;
  margin-bottom: 0.9rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.28rem;
}

.region-card p {
  margin: 0;
  color: var(--muted);
}

.service-card {
  min-height: 340px;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    linear-gradient(150deg, rgba(214, 160, 68, 0.1), transparent 36%);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.service-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 24%);
  pointer-events: none;
}

.service-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 160, 68, 0.24);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    linear-gradient(150deg, rgba(214, 160, 68, 0.14), transparent 38%);
}

.service-card-top,
.service-card-body,
.service-card-footer {
  position: relative;
  z-index: 1;
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

/* ─── SVG Service Icons ─── */
.service-icon-box {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
}

.service-panel:hover .service-icon-box {
  border-color: rgba(214, 160, 68, 0.28);
  background: linear-gradient(180deg, rgba(214, 160, 68, 0.1), rgba(214, 160, 68, 0.03));
  transform: scale(1.06) rotate(-2deg);
}

.service-icon-box svg {
  width: 30px;
  height: 30px;
  display: block;
  color: var(--accent-strong);
  transition: color 0.25s ease;
}

/* Legacy icon placeholder kept for fallback */
.service-icon-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 12px,
      rgba(255, 255, 255, 0.01) 12px,
      rgba(255, 255, 255, 0.01) 24px
    );
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-icon-placeholder span {
  font-family: "Space Grotesk", sans-serif;
  color: var(--accent-strong);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.service-index {
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-top: 0.35rem;
}

.service-card h3 {
  margin: 1.4rem 0 0.6rem;
  font-size: 1.5rem;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.08;
}

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

.service-card-footer {
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card-footer::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.service-card-footer span {
  color: var(--text);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

/* ─── Projects ─── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 110px;
  gap: 1.5rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.project-gallery-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    linear-gradient(155deg, rgba(214, 160, 68, 0.1), transparent 36%);
}

.project-gallery-item:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 160, 68, 0.22);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.32);
}

.project-gallery-item:hover .project-placeholder,
.project-gallery-item:hover .project-image-frame,
.about-visual-panel:hover .about-image-frame,
.hero-showcase:hover .hero-image-frame {
  border-color: rgba(214, 160, 68, 0.28);
  transform: translateY(-2px);
}

.project-gallery-item:hover .project-image {
  transform: scale(1.055);
  filter: contrast(1.08) saturate(0.98) brightness(0.92);
}

.about-visual-panel:hover .about-image {
  transform: scale(1.05);
  filter: contrast(1.08) saturate(0.96) brightness(0.92);
}

.hero-showcase:hover .hero-image {
  transform: scale(1.075);
  filter: contrast(1.12) saturate(0.98) brightness(0.9);
}

.project-featured {
  grid-column: span 7;
  grid-row: span 4;
}

.project-wide {
  grid-column: span 8;
  grid-row: span 3;
}

.projects-grid > .project-gallery-item:nth-child(2),
.projects-grid > .project-gallery-item:nth-child(6) {
  grid-column: span 5;
  grid-row: span 2;
}

.projects-grid > .project-gallery-item:nth-child(3),
.projects-grid > .project-gallery-item:nth-child(4) {
  grid-column: span 5;
  grid-row: span 2;
}

.project-copy {
  position: relative;
  padding-top: 1.2rem;
}

.project-copy h3 {
  margin-bottom: 0.7rem;
}

.project-copy p {
  margin: 0;
}

.project-tag {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.45rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-placeholder {
  position: relative;
  overflow: hidden;
}

.project-image-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: #0b0f14;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: border-color 0.35s ease, transform 0.35s ease;
}

.project-image-frame::before,
.project-image-frame::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: 1;
  pointer-events: none;
}

.project-image-frame::before {
  width: 160px;
  height: 160px;
  top: 22px;
  right: -34px;
  background: rgba(214, 160, 68, 0.14);
}

.project-image-frame::after {
  width: 110px;
  height: 110px;
  left: 24px;
  bottom: 24px;
  background: rgba(255, 255, 255, 0.05);
}

.project-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.04) saturate(0.94) brightness(0.9);
  transform: scale(1.025);
  transition: transform 0.45s ease, filter 0.3s ease;
}

.project-placeholder::before,
.project-placeholder::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.project-placeholder::before {
  width: 160px;
  height: 160px;
  top: 22px;
  right: -34px;
  background: rgba(214, 160, 68, 0.14);
}

.project-placeholder::after {
  width: 110px;
  height: 110px;
  left: 24px;
  bottom: 24px;
  background: rgba(255, 255, 255, 0.05);
}

.project-placeholder-xl {
  min-height: 100%;
}

.project-placeholder-lg {
  min-height: 320px;
}

.project-placeholder-md {
  min-height: 250px;
}

.project-placeholder-sm {
  min-height: 210px;
}

.project-placeholder-xl .project-image,
.project-placeholder-xl {
  min-height: 100%;
}

.project-placeholder-lg .project-image,
.project-placeholder-lg {
  min-height: 320px;
}

.project-placeholder-md .project-image,
.project-placeholder-md {
  min-height: 250px;
}

.project-placeholder-sm .project-image,
.project-placeholder-sm {
  min-height: 210px;
}

/* ─── Contact ─── */
.contact-shell {
  padding-bottom: 0;
}

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

.contact-info-panel,
.contact-form-panel {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    linear-gradient(155deg, rgba(214, 160, 68, 0.08), transparent 34%);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.contact-mini-card {
  min-height: 220px;
  padding: 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.contact-mini-card:hover,
.contact-form-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 160, 68, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.contact-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 12px,
      rgba(255, 255, 255, 0.01) 12px,
      rgba(255, 255, 255, 0.01) 24px
    );
  color: var(--accent-strong);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
}

.contact-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-label {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--accent);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.contact-mini-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}

.contact-mini-card p {
  margin: 0 0 1rem;
}

.contact-mini-card a,
.contact-static {
  color: var(--text);
  font-weight: 700;
}

.contact-panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-form-note {
  margin: 0;
  color: var(--muted);
  max-width: 46ch;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
}

.contact-form span {
  font-size: 0.92rem;
  color: var(--muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 0.95rem 1rem;
  outline: none;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form textarea {
  min-height: 136px;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(246, 242, 235, 0.9) 50%),
    linear-gradient(135deg, rgba(246, 242, 235, 0.9) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 2px),
    calc(100% - 16px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 3rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(212, 162, 76, 0.5);
  box-shadow: 0 0 0 4px rgba(212, 162, 76, 0.08);
}

/* ─── Form Feedback (inline, replaces window.alert) ─── */
.form-feedback {
  display: none;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 0.5rem;
  border: 1px solid transparent;
  animation: feedbackIn 0.3s ease forwards;
}

@keyframes feedbackIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-feedback.is-success {
  display: flex;
  background: var(--success-soft);
  border-color: rgba(42, 210, 104, 0.22);
  color: #5fe89c;
}

.form-feedback.is-error {
  display: flex;
  background: var(--error-soft);
  border-color: rgba(242, 92, 92, 0.22);
  color: #f58c8c;
}

.form-feedback-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  line-height: 1;
}

.form-submit-btn {
  position: relative;
}

.form-submit-btn.is-loading {
  pointer-events: none;
  opacity: 0.7;
}

.form-submit-btn.is-loading::after {
  content: "";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 2px solid rgba(16, 19, 23, 0.4);
  border-top-color: #101317;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: translateY(-50%) rotate(360deg); }
}

/* ─── Floating WhatsApp ─── */
.floating-whatsapp {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 62px;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(8, 11, 15, 0.9);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.38);
  border-color: rgba(42, 210, 104, 0.38);
}

.floating-whatsapp:focus-visible {
  border-color: rgba(42, 210, 104, 0.5);
}

.floating-whatsapp-mark {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2ad268, #1faa53);
  color: #08100c;
  flex-shrink: 0;
}

.floating-whatsapp-mark svg {
  width: 22px;
  height: 22px;
  display: block;
}

.floating-whatsapp-text {
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.03em;
}

/* ─── Scroll to Top ─── */
.scroll-top-btn {
  position: fixed;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 30;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(8, 11, 15, 0.9);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.2s ease, background 0.2s ease;
}

.scroll-top-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  border-color: rgba(214, 160, 68, 0.3);
  background: rgba(214, 160, 68, 0.08);
}

.scroll-top-btn svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* ─── Footer ─── */
.site-footer {
  padding: 2rem 0 2.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-brand-block p {
  max-width: 34ch;
  margin: 0;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.75rem;
}

.footer-column h3 {
  margin: 0 0 0.35rem;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
}

.footer-column a,
.footer-column span {
  color: var(--muted);
  transition: color 0.2s ease, transform 0.2s ease;
}

.contact-mini-card a,
.contact-static,
.footer-column a,
.footer-column span {
  overflow-wrap: anywhere;
}

.footer-column a:hover {
  color: var(--text);
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.9rem;
}

/* ─── Reveal Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* Stagger for grids */
.services-grid .reveal:nth-child(1),
.regions-grid .reveal:nth-child(1) { transition-delay: 0ms; }
.services-grid .reveal:nth-child(2),
.regions-grid .reveal:nth-child(2) { transition-delay: 80ms; }
.services-grid .reveal:nth-child(3),
.regions-grid .reveal:nth-child(3) { transition-delay: 160ms; }
.services-grid .reveal:nth-child(4),
.regions-grid .reveal:nth-child(4) { transition-delay: 240ms; }

/* ─── Focus Styles ─── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
}

/* ─── Responsive ─── */
@media (max-width: 1080px) {
  :root {
    --container: min(100% - 1.6rem, 100%);
  }

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

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

  .contact-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content h1 {
    max-width: 12ch;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .regions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-featured,
  .project-wide,
  .projects-grid > .project-gallery-item:nth-child(2),
  .projects-grid > .project-gallery-item:nth-child(3),
  .projects-grid > .project-gallery-item:nth-child(4),
  .projects-grid > .project-gallery-item:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    background: rgba(8, 11, 15, 0.84);
  }

  .nav-toggle {
    display: inline-block;
    min-width: 52px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.35rem;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(10, 13, 17, 0.97);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    max-height: calc(100vh - var(--header-height) - 2rem);
    overflow-y: auto;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.9rem 1rem;
    border-radius: 16px;
  }

  .header-actions {
    gap: 0.75rem;
  }

  .site-nav a:hover,
  .site-nav a.active {
    background: rgba(255, 255, 255, 0.05);
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .projects-grid,
  .hero-metrics,
  .about-points,
  .contact-card-grid,
  .visual-details,
  .footer-inner,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

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

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

  .hero-section {
    min-height: auto;
    padding-top: 3rem;
  }

  .hero-content h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 10vw, 4.2rem);
  }

  .hero-image-frame,
  .hero-image {
    min-height: 420px;
  }

  .about-image-frame,
  .about-image {
    min-height: 360px;
  }

  .about-overlay-card {
    position: static;
    margin-top: 1rem;
  }

  /* On mobile, WhatsApp button is full-width at bottom */
  .floating-whatsapp {
    right: 0.9rem;
    left: 0.9rem;
    bottom: 0.9rem;
    justify-content: center;
  }

  /* Scroll-to-top hidden on mobile (WA occupies bottom space) */
  .scroll-top-btn {
    display: none;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(100% - 1.1rem, 100%);
  }

  .site-header {
    backdrop-filter: blur(18px);
  }

  .header-inner {
    gap: 0.75rem;
  }

  .brand {
    gap: 0.55rem;
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 62px;
    height: 52px;
    border-radius: 18px;
  }

  .brand-logo {
    width: 46px;
    height: auto;
  }

  .brand-subtext {
    font-size: 0.62rem;
  }

  .hero-section {
    padding-top: 2.25rem;
    padding-bottom: 2rem;
  }

  .section-block {
    padding: 1.4rem 0 4rem;
  }

  .card-surface,
  .service-card,
  .visual-card {
    border-radius: 22px;
  }

	.button,
	.site-nav a {
	  width: 100%;
	  justify-content: center;
	}

  .hero-actions {
    display: grid;
  }

  .hero-metrics {
    gap: 0.85rem;
  }

  .visual-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-visual-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-image-frame,
  .hero-image {
    min-height: 340px;
  }

  .about-copy h3 {
    max-width: 100%;
  }

  .contact-mini-card {
    min-height: auto;
  }

  .floating-whatsapp-text {
    font-size: 0.92rem;
  }

  .floating-whatsapp {
    min-height: 58px;
    padding: 0.75rem 0.9rem;
  }
}

@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;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 540px) {
  .hero-intro-card {
    gap: 0.5rem;
  }

  .hero-intro-card span {
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.75rem;
    font-size: 0.76rem;
    flex: 0 0 auto;
  }
}
