:root {
  --zebrha-dark: #011623;
  --zebrha-light: #e6eaec;
  --zebrha-100: #ccd5da;
  --zebrha-200: #b3bfc7;
  --zebrha-300: #9aaab5;
  --zebrha-400: #8195a2;

  --bg-main: #011623;
  --bg-soft: #071d2c;
  --bg-soft-2: #0c2739;

  --text-main: #f4f7f8;
  --text-soft: rgba(230, 234, 236, 0.74);
  --text-muted: rgba(230, 234, 236, 0.55);

  --line-soft: rgba(230, 234, 236, 0.1);
  --card-bg: rgba(255, 255, 255, 0.05);
  --card-border: rgba(255, 255, 255, 0.1);

  --gold: rgba(214, 170, 84, 0.55);

  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 18px 50px rgba(0, 0, 0, 0.22);

  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;

  --max-width: 1200px;
  --transition: 280ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 10% 15%, rgba(129, 149, 162, 0.15), transparent 24%),
    radial-gradient(circle at 90% 10%, rgba(204, 213, 218, 0.08), transparent 20%),
    linear-gradient(180deg, #020e17 0%, #011623 40%, #071d2c 100%);
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-noise {
  position: sticky;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: radial-gradient(rgba(255, 255, 255, 0.3) 0.7px, transparent 0.7px);
  background-size: 10px 10px;
  mix-blend-mode: soft-light;
  z-index: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: rgba(1, 22, 35, 0.62);
  border-bottom: 1px solid var(--line-soft);
  transition:
    background 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.site-header.scrolled {
  background: rgba(1, 22, 35, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--zebrha-100), var(--zebrha-400));
  color: var(--zebrha-dark);
  box-shadow: var(--shadow-md);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.logo-mark img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.logo:hover .logo-mark {
  transform: rotate(-6deg) scale(1.04);
  box-shadow: 0 16px 34px rgba(129, 149, 162, 0.28);
}

.logo-text {
  font-size: 1rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav a {
  position: relative;
  color: var(--text-soft);
  font-weight: 500;
  transition: color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text-main);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--zebrha-100), var(--zebrha-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: border-color 240ms ease, background 240ms ease;
}

.menu-toggle:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-main);
  transition: transform 240ms ease, opacity 240ms ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition),
    color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 35%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 500ms ease;
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn-primary {
  color: var(--zebrha-dark);
  background: linear-gradient(135deg, var(--zebrha-light), var(--zebrha-400));
  box-shadow: 0 12px 30px rgba(129, 149, 162, 0.24);
}

.btn-secondary,
.btn-nav {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
}

.btn-secondary:hover,
.btn-nav:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

/* Hero */

.hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: clip;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - 82px);
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(16px);
  z-index: 0;
  animation: floatSlow 9s ease-in-out infinite;
}

.orb-a {
  width: 360px;
  height: 360px;
  top: 60px;
  left: -80px;
  background: radial-gradient(circle, rgba(129, 149, 162, 0.2), transparent 68%);
}

.orb-b {
  width: 420px;
  height: 420px;
  right: -120px;
  top: 0;
  background: radial-gradient(circle, rgba(230, 234, 236, 0.1), transparent 66%);
  animation-delay: 1.5s;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--zebrha-100);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 11ch;
}

.text-outline {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(230, 234, 236, 0.8);
}

.hero-text,
.section-text,
.contact-copy p,
.metric-card p,
.service-card p,
.step-card p,
.about-item p,
.about-panel p {
  color: var(--text-soft);
  line-height: 1.75;
}

.hero-text {
  max-width: 58ch;
  margin: 1.5rem 0 0;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.hero-highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.25rem;
  padding: 0;
  margin: 0;
  color: var(--text-muted);
}

.hero-highlights li::before {
  content: "•";
  color: var(--zebrha-100);
  margin-right: 0.45rem;
}

.hero-visual {
  position: relative;
}

.hero-visual-shell {
  position: relative;
  min-height: 760px;
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  --parallax-x: 0px;
  --parallax-y: 0px;
}

.collage,
.card-back,
.floating-card,
.floating-badge,
.shape-ring {
  transition: transform 300ms ease;
}

.shape-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.ring-1 {
  width: 520px;
  height: 520px;
  top: 60px;
  right: 10px;
  border: 1.5px dashed var(--gold);
  transform: rotate(8deg);
  animation: rotateSlow 22s linear infinite;
}

.ring-2 {
  width: 390px;
  height: 390px;
  top: 5px;
  right: 95px;
  border: 1.5px solid rgba(214, 170, 84, 0.42);
  transform: rotate(-14deg);
  animation: rotateSlowReverse 18s linear infinite;
}

.ring-1::before,
.ring-2::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(214, 170, 84, 0.14);
}

.card-back {
  position: absolute;
  width: 390px;
  height: 500px;
  right: 45px;
  top: 135px;
  border-radius: 30px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.025)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.collage {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.collage-panel {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-lg);
  transition: transform 400ms ease, filter 400ms ease;
}

.collage-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.panel-1 {
  width: 250px;
  height: 300px;
  top: 95px;
  left: 40px;
  transform: rotate(-10deg);
  z-index: 4;
}

.panel-2 {
  width: 330px;
  height: 390px;
  top: 120px;
  right: 35px;
  transform: rotate(7deg);
  z-index: 6;
}

.panel-3 {
  width: 250px;
  height: 260px;
  top: 360px;
  left: 120px;
  transform: rotate(8deg);
  z-index: 5;
}

.hero-visual:hover .panel-1 {
  transform: rotate(-7deg) translateY(-6px);
}

.hero-visual:hover .panel-2 {
  transform: rotate(4deg) translateY(-8px);
}

.hero-visual:hover .panel-3 {
  transform: rotate(5deg) translateY(-6px);
}

.hero-visual:hover .collage-panel img {
  transform: scale(1.05);
}

.collage-accent {
  position: absolute;
  z-index: 7;
  pointer-events: none;
}

.accent-1 {
  width: 270px;
  height: 74px;
  left: 78px;
  top: 395px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(44, 99, 190, 0.88),
    rgba(88, 170, 226, 0.55)
  );
  transform: rotate(-18deg);
  opacity: 0.95;
}

.accent-2 {
  width: 110px;
  height: 110px;
  right: 75px;
  top: 65px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 170, 84, 0.3), transparent 72%);
}

.floating-card,
.floating-badge,
.metric-card,
.service-card,
.step-card,
.about-panel,
.about-item,
.contact-box {
  backdrop-filter: blur(14px);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
}

.floating-card {
  position: absolute;
  right: 10px;
  bottom: 70px;
  width: 320px;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: rgba(10, 19, 30, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-lg);
  z-index: 8;
}

.mini-label {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--zebrha-100);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.floating-card h2 {
  margin: 0 0 0.65rem;
  font-size: 1.7rem;
  line-height: 1.1;
}

.floating-card p {
  margin: 0;
}

.floating-badge {
  position: absolute;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  background: rgba(8, 18, 29, 0.82);
  border: 1px solid rgba(214, 170, 84, 0.38);
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: var(--shadow-md);
  z-index: 8;
  animation: floatBadge 5s ease-in-out infinite;
}

.badge-1 {
  top: 36px;
  right: -10px;
}

.badge-2 {
  left: 5px;
  top: 520px;
  animation-delay: 1.2s;
}

.badge-3 {
  right: 110px;
  bottom: 10px;
  animation-delay: 2.1s;
}

.hero-visual-shell .card-back {
  transform: translate(var(--parallax-x), var(--parallax-y)) rotate(-7deg);
}

.hero-visual-shell .collage {
  transform: translate(
    calc(var(--parallax-x) * 0.6),
    calc(var(--parallax-y) * 0.6)
  );
}

.hero-visual-shell .floating-card {
  transform: translate(
    calc(var(--parallax-x) * 0.35),
    calc(var(--parallax-y) * 0.35)
  );
}

.hero-visual-shell .badge-1,
.hero-visual-shell .badge-2,
.hero-visual-shell .badge-3 {
  transform: translate(
    calc(var(--parallax-x) * 0.8),
    calc(var(--parallax-y) * 0.8)
  );
}

.hero-visual-shell .ring-1,
.hero-visual-shell .ring-2 {
  transform: translate(
    calc(var(--parallax-x) * 0.2),
    calc(var(--parallax-y) * 0.2)
  );
}

/* Sections */

.section {
  padding: 3rem 0 6rem;
}

.metrics-grid,
.services-grid,
.about-grid {
  display: grid;
  gap: 1.5rem;
}

.metrics-grid,
.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.section-head {
  max-width: 780px;
  margin-bottom: 2.5rem;
}

.section-head h2,
.process-copy h2,
.about-panel h2,
.contact-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.metric-card,
.service-card,
.about-item {
  position: relative;
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.metric-card::before,
.service-card::before,
.step-card::before,
.about-item::before,
.about-panel::before,
.contact-box::before {
  content: "";
  position: absolute;
  inset: auto -20% -60% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 234, 236, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.metric-card:hover::before,
.service-card:hover::before,
.step-card:hover::before,
.about-item:hover::before,
.about-panel:hover::before,
.contact-box:hover::before {
  opacity: 1;
}

.metric-card,
.step-card,
.about-item {
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.metric-card:hover,
.step-card:hover,
.about-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.metric-card {
  min-height: 220px;
}

.metric-number,
.service-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--zebrha-100);
  font-weight: 800;
  transition:
    transform 260ms ease,
    background 260ms ease;
}

.metric-card:hover .metric-number,
.service-card:hover .service-icon,
.step-card:hover .step-number {
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.1);
}

.metric-card h3,
.service-card h3,
.step-card h3,
.about-item h3 {
  margin: 0 0 0.8rem;
  font-size: 1.2rem;
}

.service-card {
  min-height: 320px;
  transition: transform var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 255, 255, 0.2);
}

.service-topline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--zebrha-100), transparent);
}

/* Process */

.process-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.process-steps {
  display: grid;
  gap: 1rem;
}

.step-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(230, 234, 236, 0.18), rgba(129, 149, 162, 0.18));
  color: var(--zebrha-light);
  font-weight: 800;
  font-size: 1.1rem;
  transition:
    transform 260ms ease,
    background 260ms ease;
}

/* About */

.about-grid {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.about-panel {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.about-panel::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -70px;
  top: -70px;
  background: radial-gradient(circle, rgba(230, 234, 236, 0.12), transparent 70%);
  border-radius: 50%;
}

.about-panel-inner {
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.about-list {
  display: grid;
  gap: 1rem;
}

/* Contact */

.contact-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03)),
    var(--card-bg);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Reveal */

.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.985);
  transition:
    opacity 700ms ease,
    transform 700ms ease,
    filter 700ms ease;
  filter: blur(6px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 240ms;
}

/* Animations */

@keyframes floatSlow {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(18px);
  }
}

@keyframes rotateSlow {
  from {
    transform: rotate(8deg);
  }
  to {
    transform: rotate(368deg);
  }
}

@keyframes rotateSlowReverse {
  from {
    transform: rotate(-14deg);
  }
  to {
    transform: rotate(-374deg);
  }
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Responsive */

@media (max-width: 1080px) {
  .hero-grid,
  .process-grid,
  .about-grid,
  .metrics-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .contact-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(1, 22, 35, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 0.85rem 0.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .btn-nav {
    display: none;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-visual-shell {
    max-width: 100%;
    min-height: 620px;
  }

  .ring-1 {
    width: 380px;
    height: 380px;
    top: 60px;
    right: 10px;
  }

  .ring-2 {
    width: 280px;
    height: 280px;
    top: 30px;
    right: 70px;
  }

  .panel-1 {
    width: 190px;
    height: 230px;
    top: 80px;
    left: 10px;
  }

  .panel-2 {
    width: 250px;
    height: 300px;
    top: 110px;
    right: 15px;
  }

  .panel-3 {
    width: 180px;
    height: 190px;
    top: 340px;
    left: 70px;
  }

  .card-back {
    width: 280px;
    height: 360px;
    right: 35px;
    top: 130px;
  }

  .accent-1 {
    width: 180px;
    top: 335px;
    left: 45px;
  }

  .floating-card {
    left: 20px;
    right: 20px;
    bottom: 10px;
    width: auto;
  }

  .badge-1,
  .badge-2,
  .badge-3 {
    display: none;
  }
}


/* ======================
   PREMIUM FOOTER
====================== */

.site-footer {
  position: relative;
  margin-top: 5rem;
  background:
    radial-gradient(circle at 10% 0%, rgba(129,149,162,0.08), transparent 30%),
    linear-gradient(180deg, #020c15 0%, #011623 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

/* subtiele glow */
.site-footer::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  top: -200px;
  right: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,170,84,0.08), transparent 70%);
  pointer-events: none;
}

/* layout */
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3rem 0;
}

/* brand */
.footer-brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 0.8rem; 
}

.footer-tagline {
  margin-top: 0.6rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.footer-location {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* headings */
.footer-heading {
  margin-bottom: 0.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* links */
.footer-nav,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a,
.footer-legal a,
.footer-legal span {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: white;
}

/* bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.2rem 0;
  background: rgba(0,0,0,0.2);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ======================
   RESPONSIVE
====================== */

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}




@media (max-width: 640px) {
  .nav-wrap {
    flex-wrap: wrap;
    min-height: auto;
    padding: 1rem 0;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .hero-visual-shell {
    min-height: 520px;
  }

  .ring-1 {
    width: 290px;
    height: 290px;
    top: 40px;
    right: 5px;
  }

  .ring-2 {
    width: 210px;
    height: 210px;
    top: 30px;
    right: 55px;
  }

  .panel-1 {
    width: 150px;
    height: 180px;
    top: 70px;
    left: 0;
  }

  .panel-2 {
    width: 185px;
    height: 235px;
    top: 95px;
    right: 5px;
  }

  .panel-3 {
    width: 145px;
    height: 150px;
    top: 285px;
    left: 45px;
  }

  .card-back {
    width: 220px;
    height: 270px;
    right: 15px;
    top: 120px;
  }

  .accent-1 {
    width: 120px;
    height: 44px;
    top: 265px;
    left: 38px;
  }

  .accent-2 {
    display: none;
  }

  .floating-card {
    padding: 1.1rem;
  }

  .floating-card h2 {
    font-size: 1.4rem;
  }

  .step-card {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal.visible {
    opacity: 1;
    transform: none;
    filter: none;
  }
}