:root {
  --bg-1: linear-gradient(120deg, #111827 0%, #1f2937 50%, #0f766e 100%);
  --bg-2: linear-gradient(120deg, #1e293b 0%, #0ea5e9 50%, #1e293b 100%);
  --bg-3: linear-gradient(120deg, #581c87 0%, #9333ea 50%, #3b0764 100%);
  --text: #e5e7eb;
  --muted: #94a3b8;
  --accent: #22d3ee;
  --nav-bg: rgba(15, 23, 42, 0.55);
  --nav-border: rgba(148, 163, 184, 0.25);
  --focus: #f59e0b;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell,
    Noto Sans, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: #ffffff;
}

/* Navbar */
header.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: 64px;
  display: flex;
  align-items: center;
  backdrop-filter: saturate(120%) blur(8px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  z-index: 20;
}

.nav-inner {
  width: min(1200px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: conic-gradient(
    from 180deg,
    #22d3ee 0 25%,
    #a78bfa 0 50%,
    #f472b6 0 75%,
    #22d3ee 0 100%
  );
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.06) inset,
    0 6px 18px rgba(0, 0, 0, 0.35);
}

nav.menu {
  display: inline-flex;
  gap: 22px;
  align-items: center;
}

nav.menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  opacity: 0.9;
}

nav.menu a:hover,
nav.menu a:focus-visible {
  color: white;
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.lang .lang-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lang select {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--nav-border);
  padding: 6px 8px;
  border-radius: 6px;
}

.lang select:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

/* Slider */
main.slider {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.9s ease;
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-color: var(--bg, var(--bg-1));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    80% 60% at 50% 40%,
    rgba(0, 0, 0, 0),
    rgba(2, 6, 23, 0.9) 70%
  );
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 96px 24px 24px;
}

.slide h1 {
  font-size: clamp(40px, 7.5vw, 80px);
  margin: 0 0 10px;
  font-family: "Megrim", cursive;
  font-weight: 600;
  letter-spacing: 1px;
}

.slide p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 500;
}

/* Controls */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--nav-border);
  background: rgba(15, 23, 42, 0.55);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
}

.nav-btn:hover {
  background: rgba(15, 23, 42, 0.75);
}

.nav-btn:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.nav-btn.prev {
  left: 16px;
}

.nav-btn.next {
  right: 16px;
}

.dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  display: inline-flex;
  gap: 8px;
  z-index: 3;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.dot.is-active {
  background: var(--accent);
  border-color: var(--accent);
}

/* Socials */
.socials {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 30;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--nav-border);
  background: rgba(15, 23, 42, 0.55);
  display: grid;
  place-items: center;
  color: var(--text);
  text-decoration: none;
}

.socials a:hover {
  background: rgba(15, 23, 42, 0.8);
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Cards Section */
.cards-intro {
  text-align: center;
  max-width: 900px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.cards-intro h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4.5vw, 48px);
  color: #0f172a;
}

.cards-intro p {
  margin: 0;
  color: #374151;
}

.cards-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 60px 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  flex: 1;
  min-width: 280px;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  color: #fff;
}

.cards-section .card:nth-child(2) {
  margin-top: 40px;
}

.card:nth-child(1) {
  background-image: url('/images/card1.JPG');
}

.card:nth-child(2) {
  background-image: url('/images/card2.JPG');
}

.card:nth-child(3) {
  background-image: url('/images/card3.JPG');
}

.card-content {
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  width: 100%;
}

.card-content small {
  display: block;
  font-size: 0.9rem;
  opacity: 0.9;
}

.card-content h2 {
  margin: 10px 0;
  font-size: 1.4rem;
}

.btn-outline {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #fff;
  border-radius: 20px;
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

.nav-spacer {
  height: 64px;
}

@media (max-width: 720px) {
  nav.menu {
    display: none;
  }

  .lang label {
    display: none;
  }

  .lang .lang-wrap {
    gap: 4px;
  }

  .lang .hamburger {
    display: inline-flex;
  }

  .socials {
    top: auto;
    bottom: 16px;
    left: 50%;
    right: auto;
    transform: translate(-50%, 0);
    flex-direction: row;
    gap: 14px;
  }
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid var(--nav-border);
  background: rgba(15, 23, 42, 0.55);
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  color: var(--text);
}

.hamburger:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.hamburger .bar {
  width: 18px;
  height: 2px;
  background: currentColor;
  display: block;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  background: rgba(15, 23, 42, 0.95);
  z-index: 40;
  padding: 80px 20px 40px;
  text-align: center;
  backdrop-filter: blur(10px) saturate(120%);
}

.mobile-menu a {
  color: #f8fafc;
  text-decoration: none;
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.mobile-menu a:hover {
  color: var(--accent);
}

.mobile-menu .mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(15, 23, 42, 0.6);
  color: #f8fafc;
  font-size: 28px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.mobile-menu .mobile-close:hover {
  background: rgba(15, 23, 42, 0.82);
}

.mobile-menu .mobile-close:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.mobile-menu.is-open {
  display: flex;
}

.collections {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr;
  gap: 36px;
  align-items: center;
  padding: 80px 20px;
  max-width: 1400px;
  margin: 0 auto 60px;
}

.collections .eyebrow {
  color: #dc2626;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.collections .col-info h2 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.05;
  color: #0f172a;
}

.collections .col-info p {
  color: #374151;
  max-width: 600px;
}

.collections .text-link {
  color: #111827;
  text-decoration: underline;
}

.col-carousel {
  position: relative;
  overflow: hidden;
}

.col-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
  will-change: transform;
}

.col-item {
  flex: 0 0 auto;
  width: min(360px, 28vw);
}

.col-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.col-caption {
  margin: 12px 0 0;
  font-size: 1.5rem;
  color: #0f172a;
}

.col-caption a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.col-caption a:hover {
  border-color: currentColor;
}

.col-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #111827;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.col-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

.col-nav.prev {
  left: 6px;
}

.col-nav.next {
  right: 6px;
}

@media (max-width: 900px) {
  .collections {
    grid-template-columns: 1fr;
  }

  .col-item {
    width: 70vw;
  }

  .col-item img {
    height: 360px;
  }
}

.decor {
  position: relative;
  padding: 100px 10%;
  background: #fff;
  overflow: hidden;
}

.decor-bg {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 10rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.05);
  z-index: 0;
  letter-spacing: 30px;
}

.decor-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.decor-image {
  flex: 0 0 auto;
}

.decor-image img {
  width: 100%;
  max-width: 520px;
  border: 1px solid #e0e0e0;
  padding: 5px;
}

.decor-text {
  flex: 1;
}

.decor-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

.decor-text h2 span {
  color: #b69330;
}

.decor-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #555;
}

.btn-decor {
  display: inline-block;
  padding: 12px 30px;
  background: #d1c3a0;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 3px;
  transition: 0.3s;
}

.btn-decor:hover {
  background: #b69330;
}

@media (max-width: 900px) {
  .decor-container {
    flex-direction: column;
    text-align: center;
  }

  .decor-bg {
      font-size: 5rem;
      letter-spacing: 10px;
      top: 40px;
  }

  .decor-image img {
    max-width: 360px;
  }
}

.projects {
  background: #f7f7f8;
  padding: 80px 20px;
}

.projects-wrap {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  align-items: center;
}

.proj-viewport {
  position: relative;
  overflow: hidden;
  height: 520px;
  border-radius: 8px;
}

.proj-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.proj-slide.is-active {
  opacity: 1;
}

.proj-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.proj-details {
  padding: 10px 10px 0 10px;
}

.proj-eyebrow {
  color: #b91c1c;
  font-weight: 700;
  margin-bottom: 12px;
  display: inline-block;
}

.proj-title {
  font-size: clamp(28px, 3.8vw, 44px);
  color: #0f172a;
  margin: 8px 0 14px;
}

.proj-desc {
  color: #374151;
  line-height: 1.6;
  margin-bottom: 18px;
}

.proj-link {
  color: #0f172a;
  text-decoration: underline;
}

.proj-controls {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.proj-progress {
  height: 6px;
  background: #e5e7eb;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}

.proj-progress > span {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: #ef4444;
  border-radius: 999px;
  transition: width 0.4s ease;
}

.proj-index {
  color: #111827;
  font-variant-numeric: tabular-nums;
}

.proj-nav {
  display: inline-flex;
  gap: 8px;
}

.proj-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: white;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.proj-btn:hover {
  background: #f3f4f6;
}

@media (max-width: 980px) {
  .projects-wrap {
    grid-template-columns: 1fr;
  }

  .proj-viewport {
    height: 420px;
  }
}

.aes {
  padding: 80px 5% 40px;
  background: #fff;
}

.aes-wrap {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1.95fr;
  gap: 36px;
  align-items: center;
}

.aes-left h2 {
  font-size: clamp(28px, 5vw, 56px);
  color: #0f172a;
  margin: 0 0 10px;
}

.aes-left p {
  color: #374151;
  margin: 0;
  max-width: 560px;
}

.aes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

@media (min-width: 1800px) {
  .aes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.aes-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4 / 3;
}

.aes-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #dbeafe;
}

.aes-item .zoom {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0);
  color: #fff;
  opacity: 0;
  transition: background 0.25s ease, opacity 0.25s ease;
  border: none;
  cursor: pointer;
}

.aes-item:hover .zoom {
  opacity: 1;
  background: rgba(0, 0, 0, 0.35);
}

.aes-item .zoom svg {
  width: 36px;
  height: 36px;
}

@media (max-width: 980px) {
  .aes-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .aes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: 92vw;
  max-height: 92vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox .close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.catalogues {
  padding: 80px 6% 60px;
  background: #fff;
}

.cat-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 36px;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 2.5vw, 40px);
  align-items: start;
}

.cat-card {
  text-align: center;
}

.cat-card h3 {
  margin: 16px 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1f1f1f;
  line-height: 1.35;
}

.cat-card .dl {
  display: inline-block;
  text-decoration: underline;
  color: #000;
  font-size: 0.95rem;
}

.cat-card .cover {
  display: block;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  transform: translateZ(0);
}

.cat-card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.18));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.cat-card .cover:hover img {
  transform: translateY(-6px);
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.22));
}

@media (max-width: 1200px) {
  .cat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 460px) {
  .cat-grid {
    grid-template-columns: 1fr;
  }
}

.press {
  padding: 70px 0;
  text-align: center;
  background: #fff;
}

.press h2 {
  font-size: 1.6rem;
  margin-bottom: 40px;
  color: #333;
  font-weight: 500;
}

.press-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.press-track {
  display: flex;
  gap: 80px;
  animation: slideLeft 25s linear infinite;
}

.press img {
  height: 100px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.press img:hover {
  filter: grayscale(0%);
}

@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.site-footer {
  position: relative;
  background:
    radial-gradient(120% 120% at 8% 0%, rgba(56, 189, 248, 0.12), rgba(15, 23, 42, 0)),
    linear-gradient(160deg, #0b1120 0%, #0f172a 55%, #111827 100%);
  color: #e2e8f0;
  margin-top: 64px;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: auto -140px -180px auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, rgba(15, 23, 42, 0) 65%);
  opacity: 0.65;
  pointer-events: none;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
  opacity: 0.88;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.site-footer a:hover {
  opacity: 1;
  color: #f8fafc;
}

.footer-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 72px 0 52px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: stretch;
}

.ft-left,
.ft-cols {
  flex: 1 1 320px;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: linear-gradient(155deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.65));
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(6px);
}

.ft-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.8);
  margin-bottom: 14px;
}

.ft-eyebrow::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #38bdf8, #818cf8);
}

.ft-left h3 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 2.8vw, 2.2rem);
  color: #f1f5f9;
}

.ft-left p {
  margin: 0 0 24px;
  color: rgba(226, 232, 240, 0.8);
  max-width: 32ch;
}

.ft-contact-table {
  margin: 18px 0;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.65);
  overflow: hidden;
}

.ft-contact-table table {
  width: 100%;
  border-collapse: collapse;
}

.ft-contact-table th,
.ft-contact-table td {
  padding: 10px 14px;
  text-align: left;
  font-size: 0.94rem;
  color: rgba(226, 232, 240, 0.87);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.ft-contact-table td a {
  color: inherit;
  text-decoration: underline;
}

.ft-contact-table th {
  width: 35%;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.68);
}

.ft-contact-table tr:last-child th,
.ft-contact-table tr:last-child td {
  border-bottom: none;
}

.ft-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.ft-socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #f8fafc;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.ft-socials a:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.5);
  background: rgba(56, 189, 248, 0.15);
}

.ft-socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.ft-col a:focus-visible,
.ft-col button.footer-link:focus-visible,
.footer-bottom .legal a:focus-visible,
.ft-socials a:focus-visible {
  outline: 2px solid rgba(56, 189, 248, 0.6);
  outline-offset: 3px;
}

.ft-cols {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

.ft-col h4 {
  margin: 0 0 16px;
  font-size: 0.95rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.75);
}

.ft-col a,
.ft-col button.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: rgba(226, 232, 240, 0.85);
  font-size: 0.97rem;
  transition: color 0.2s ease, transform 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  appearance: none;
}

.ft-col a::before,
.ft-col button.footer-link::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.5);
  transition: background 0.2s ease;
}

.ft-col a:hover,
.ft-col button.footer-link:hover {
  color: #f8fafc;
  transform: translateX(4px);
}

.ft-col a:hover::before,
.ft-col button.footer-link:hover::before {
  background: linear-gradient(135deg, #38bdf8, #818cf8);
}

.ft-company-meta {
  margin: 24px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  list-style: none;
  display: grid;
  gap: 14px;
  width: 100%;
}

.ft-company-meta .meta-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(80px, auto) minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
  padding-left: 24px;
}

.ft-company-meta .meta-item::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.65), rgba(129, 140, 248, 0.65));
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.35);
}

.ft-company-meta .meta-item:nth-child(2)::before {
  background: linear-gradient(135deg, rgba(129, 140, 248, 0.7), rgba(168, 85, 247, 0.65));
}

.ft-company-meta .meta-item:nth-child(3)::before {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.65), rgba(16, 185, 129, 0.6));
}

.ft-company-meta .meta-item:nth-child(4)::before {
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.7), rgba(251, 191, 36, 0.65));
}

.ft-company-meta .meta-label {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.7);
  line-height: 1.6;
  padding-top: 2px;
}

.ft-company-meta .meta-value {
  display: grid;
  gap: 4px;
  font-size: 0.98rem;
  color: rgba(226, 232, 240, 0.88);
}

.ft-company-meta .meta-value span {
  display: block;
}

.ft-company-meta .meta-value a {
  color: inherit;
  font-weight: 500;
}

.ft-company-meta .meta-value a:hover {
  color: #f8fafc;
  text-decoration: underline;
}

.footer-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.footer-modal[aria-hidden="false"] {
  display: flex;
}

.footer-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 31, 0.7);
  backdrop-filter: blur(6px);
}

.footer-modal__dialog {
  position: relative;
  width: min(540px, 92vw);
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px 32px 36px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.78));
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 30px 80px rgba(8, 15, 31, 0.55);
  color: #f8fafc;
}

.footer-modal__dialog h2 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.footer-modal__body {
  display: grid;
  gap: 18px;
}

.footer-modal__content p {
  margin: 0 0 12px;
  line-height: 1.6;
  color: rgba(226, 232, 240, 0.9);
}

.footer-modal__content a {
  color: #38bdf8;
}

.footer-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: none;
  background: rgba(30, 41, 59, 0.9);
  color: #f8fafc;
  font-size: 1.4rem;
  cursor: pointer;
}

.footer-modal__form {
  margin-top: 8px;
  display: grid;
  gap: 14px;
}

.footer-modal__field label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.85);
}

.footer-modal__field input,
.footer-modal__field textarea {
  width: 100%;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 12px;
  padding: 10px 12px;
  color: #f8fafc;
}

.footer-modal__submit {
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 600;
  color: #0f172a;
  background: linear-gradient(135deg, #38bdf8, #818cf8);
  cursor: pointer;
}

.footer-modal__submit:hover {
  box-shadow: 0 12px 24px rgba(56, 189, 248, 0.25);
}

.footer-modal__submit[disabled] {
  opacity: 0.6;
  cursor: default;
  box-shadow: none;
}

.footer-modal__disclaimer {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(148, 163, 184, 0.7);
}

.footer-modal__status {
  margin: 4px 0 0;
  font-size: 0.85rem;
  min-height: 1.2em;
}

.footer-modal__status.is-success {
  color: rgba(74, 222, 128, 0.85);
}

.footer-modal__status.is-error {
  color: rgba(248, 113, 113, 0.85);
}

body.footer-modal-open {
  overflow: hidden;
}

body.popup-open {
  overflow: hidden;
}

.popup-banner {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: opacity 0.3s ease;
}

.popup-banner[aria-hidden="true"] {
  pointer-events: none;
  opacity: 0;
}

.popup-banner__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 31, 0.65);
  backdrop-filter: blur(4px);
}

.popup-banner__dialog {
  position: relative;
  background: radial-gradient(circle at top, rgba(30, 58, 138, 0.6), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 24px;
  padding: 28px;
  width: min(520px, 92vw);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 80px rgba(8, 15, 31, 0.55);
  color: #f8fafc;
  display: grid;
  gap: 18px;
}

.popup-banner__image img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.popup-banner__content h3 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.popup-banner__content p {
  margin: 0;
  line-height: 1.6;
  color: rgba(226, 232, 240, 0.85);
}

.popup-banner__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: none;
  background: rgba(15, 23, 42, 0.8);
  color: #f8fafc;
  font-size: 1.4rem;
  cursor: pointer;
}

.popup-banner__trigger {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  background: linear-gradient(135deg, #38bdf8, #818cf8);
  color: #0f172a;
  cursor: pointer;
  box-shadow: 0 15px 30px rgba(56, 189, 248, 0.3);
  display: none;
}

.popup-banner[aria-hidden="true"] + .popup-banner__trigger {
  display: inline-flex;
}

@media (max-width: 640px) {
  .popup-banner__dialog {
    padding: 24px;
    border-radius: 18px;
  }

  .popup-banner__trigger {
    bottom: 16px;
    right: 16px;
  }
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(203, 213, 225, 0.8);
  font-size: 0.92rem;
}

.footer-bottom .legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom .legal a {
  opacity: 0.75;
}

.footer-bottom .legal a:hover {
  opacity: 1;
}

.footer-bottom .copy {
  opacity: 0.7;
}
@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
  }

  .ft-left,
  .ft-cols {
    padding: 28px;
  }

  .ft-contact-table {
    margin: 16px 0;
  }
}

@media (max-width: 640px) {
  .footer-inner {
    padding: 60px 0 40px;
  }

  .ft-left,
  .ft-cols {
    padding: 24px;
    border-radius: 20px;
  }

  .ft-socials {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
