:root {
  --venus-red: #a31d23;
  --venus-black: #101010;
  --venus-ink: #1f1f1f;
  --venus-light: #f9f7f6;
  --venus-white: #ffffff;
  --venus-border: #e6e2df;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--venus-ink);
  background: radial-gradient(circle at 10% 0%, #ffffff 0%, #f7f4f2 50%, #f1ece9 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 82% 14%, rgba(163, 29, 35, 0.06), transparent 36%),
    radial-gradient(circle at 12% 72%, rgba(16, 16, 16, 0.04), transparent 34%);
}

h1,
h2,
h3,
h4,
.navbar-brand {
  font-family: "Playfair Display", serif;
  color: var(--venus-black);
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(163, 29, 35, 0.7);
  outline-offset: 2px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -44px;
  z-index: 1200;
  background: var(--venus-black);
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 0.35rem;
  font-size: 0.8rem;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-wrap: balance;
}

.section-line {
  width: 60px;
  height: 3px;
  background: var(--venus-red);
  margin: 0 auto 1.5rem;
}

.scroll-target {
  scroll-margin-top: 104px;
}

.onepage-label {
  display: inline-block;
  color: var(--venus-red);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-intro {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.home-materials,
.home-about-values,
.home-contact {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 243, 241, 0.94));
  border-top: 1px solid rgba(230, 226, 223, 0.95);
  border-bottom: 1px solid rgba(230, 226, 223, 0.95);
}

.home-projects .compare-wrap {
  margin-top: 0.5rem;
}

.home-projects-grid {
  margin-top: 2rem;
}

.home-contact-form .contact-form-wrap {
  margin-top: 0.25rem;
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 3px solid var(--venus-red);
  padding: 0.85rem 0;
  box-shadow: 0 10px 24px rgba(16, 16, 16, 0.06);
}

.announcement-bar {
  background: linear-gradient(90deg, #8f171d, #b52a32);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  padding: 0.42rem 0;
}

.navbar-brand {
  position: relative;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1.35rem;
  overflow: hidden;
}

.navbar-brand::after {
  content: "";
  position: absolute;
  top: -130%;
  left: -45%;
  width: 35%;
  height: 340%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  transform: rotate(18deg);
  transition: left 0.6s ease;
}

.navbar-brand:hover::after {
  left: 120%;
}

.brand-red {
  color: var(--venus-red);
}

.nav-link {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-left: 1rem;
  padding-bottom: 0.35rem;
  color: var(--venus-black) !important;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--venus-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--venus-red) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: 1rem;
}

.lang-flag-btn {
  border: 1px solid rgba(18, 18, 18, 0.22);
  background: #fff;
  width: 40px;
  height: 30px;
  line-height: 1;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.lang-flag {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: contain;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(16, 16, 16, 0.08);
}

.lang-flag-btn:hover {
  transform: translateY(-1px);
  border-color: var(--venus-red);
}

.lang-flag-btn.active {
  border-color: var(--venus-red);
  box-shadow: 0 0 0 2px rgba(163, 29, 35, 0.12);
}

.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--venus-white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.6) 44%, rgba(0, 0, 0, 0.34) 74%, rgba(0, 0, 0, 0.24) 100%);
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-copy {
  max-width: 720px;
  padding: 1.2rem 1.35rem;
  border-radius: 20px;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.22));
  backdrop-filter: blur(2px);
}

.hero-copy .display-3,
.hero-copy .lead,
.hero-copy .hero-usp,
.hero-copy .eyebrow {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.hero-usp {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #e6dcda;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.hero-home {
  background: url("./images/hero-home.webp") center / cover;
  background-position: center calc(50% + var(--hero-shift, 0px));
}

.hero-page {
  min-height: 48vh;
}

.hero-about {
  background: url("./images/hero-about-v2.webp") center / cover;
  background-position: center calc(50% + var(--hero-shift, 0px));
}

.hero-projects {
  background: url("./images/hero-projects.webp") center / cover;
  background-position: center calc(50% + var(--hero-shift, 0px));
}

.hero-contact {
  background: url("./images/hero-contact.webp") center / cover;
  background-position: center calc(50% + var(--hero-shift, 0px));
}

.hero-materials {
  background: url("./images/hero-projects.webp") center / cover;
  background-position: center calc(50% + var(--hero-shift, 0px));
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  font-size: 0.8rem;
  color: #eec5c6;
}

.btn-venus {
  position: relative;
  border: 0;
  background: linear-gradient(135deg, #a31d23, #bf3a40);
  color: var(--venus-white);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.95rem 1.8rem;
  transition: transform 0.25s ease, background 0.25s ease;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(163, 29, 35, 0.24);
}

.btn-venus:hover {
  background: linear-gradient(135deg, #8f171d, #a31d23);
  color: var(--venus-white);
  transform: translateY(-2px);
}

.btn-venus-outline {
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.95rem 1.45rem;
  backdrop-filter: blur(2px);
  transition: all 0.25s ease;
}

.btn-venus-outline:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--venus-black);
}

.seo-links-section .btn-venus-outline {
  border-color: rgba(163, 29, 35, 0.35);
  background: #fff;
  color: #5a2225;
}

.seo-links-section .btn-venus-outline:hover {
  background: var(--venus-red);
  border-color: var(--venus-red);
  color: #fff;
}

.btn-venus::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -35%;
  width: 40%;
  height: 320%;
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(22deg);
  transition: left 0.45s ease;
}

.btn-venus:hover::after {
  left: 120%;
}

.hero-logo-badge {
  --frame-gap: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background:
    linear-gradient(150deg, rgba(18, 18, 18, 0.74), rgba(8, 8, 8, 0.56)),
    radial-gradient(circle at 16% 12%, rgba(163, 29, 35, 0.28), transparent 48%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.028) 0 2px, transparent 2px 6px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 34px;
  width: clamp(290px, 34vw, 420px);
  aspect-ratio: 1 / 1;
  padding: calc(var(--frame-gap) * 2);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  backdrop-filter: blur(7px);
  overflow: hidden;
  animation: logoFloat 4.8s ease-in-out infinite;
}

.hero-logo-badge img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 26px;
}

.hero-logo-badge::before {
  content: "";
  position: absolute;
  inset: var(--frame-gap);
  border: 1px solid rgba(163, 29, 35, 0.52);
  border-radius: 26px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14) inset;
  pointer-events: none;
}

.hero-logo-badge::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  top: -140px;
  left: -80px;
  background: radial-gradient(circle, rgba(163, 29, 35, 0.35) 0%, transparent 72%);
  transform: rotate(14deg);
  pointer-events: none;
}

.owner-strip {
  background: linear-gradient(90deg, #8f171d 0%, #b52a32 100%);
  color: var(--venus-white);
  padding: 4rem 0;
}

.owner-strip .section-line {
  background: var(--venus-white);
}

.shape-divider {
  height: 30px;
  background:
    radial-gradient(circle at 20px -10px, #fff 21px, transparent 22px) repeat-x;
  background-size: 42px 30px;
  background-position: center top;
}

.stats-band {
  margin-top: 2.5rem;
  margin-bottom: 5rem;
}

.stats-card {
  background: #fff;
  border: 1px solid var(--venus-border);
  border-radius: 16px;
  padding: 1.4rem 1rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(20, 20, 20, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.stats-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(20, 20, 20, 0.1);
}

.stats-value {
  font-size: clamp(1.5rem, 3.3vw, 2.3rem);
  font-weight: 700;
  color: var(--venus-red);
  font-family: "Playfair Display", serif;
}

.stats-label {
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #696462;
}

.process-timeline {
  position: relative;
}

.process-step {
  background: #fff;
  border: 1px solid var(--venus-border);
  border-radius: 14px;
  padding: 1.3rem 1rem;
  height: 100%;
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.06);
}

.process-step-no {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--venus-red);
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.card-service,
.value-card,
.contact-info-item {
  height: 100%;
  border: 1px solid var(--venus-border);
  background: var(--venus-white);
  padding: 2rem 1.4rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  isolation: isolate;
  border-radius: 16px;
}

.card-service::before,
.value-card::before,
.contact-info-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(163, 29, 35, 0.24), rgba(163, 29, 35, 0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.stagger-grid > * {
  animation: cardRise 0.55s ease both;
}

.stagger-grid > *:nth-child(1) { animation-delay: 0.05s; }
.stagger-grid > *:nth-child(2) { animation-delay: 0.12s; }
.stagger-grid > *:nth-child(3) { animation-delay: 0.19s; }
.stagger-grid > *:nth-child(4) { animation-delay: 0.26s; }
.stagger-grid > *:nth-child(5) { animation-delay: 0.33s; }
.stagger-grid > *:nth-child(6) { animation-delay: 0.4s; }

.card-service:hover,
.value-card:hover,
.contact-info-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(20, 20, 20, 0.08);
  border-color: #d7cdca;
}

.contact-address-copy {
  line-height: 1.7;
  max-width: 28ch;
  margin-inline: auto;
}

.card-service {
  border-top: 5px solid var(--venus-black);
  text-align: center;
}

.card-service:hover {
  border-top-color: var(--venus-red);
}

.service-icon,
.info-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(163, 29, 35, 0.16) 0%, rgba(163, 29, 35, 0.08) 45%, transparent 70%);
  color: var(--venus-red);
  font-size: 1.9rem;
  margin-bottom: 0.7rem;
}

.about-img-frame {
  position: relative;
  display: inline-block;
}

.about-img-frame::before {
  content: "";
  position: absolute;
  top: -18px;
  left: -18px;
  width: 100%;
  height: 100%;
  border: 8px solid var(--venus-red);
  z-index: 0;
  transition: all 0.3s ease;
}

.about-img-frame:hover::before {
  top: -10px;
  left: -10px;
}

.about-img-frame img {
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.about-profile-details {
  border-top: 1px solid rgba(163, 29, 35, 0.2);
  padding-top: 3rem;
  color: #606060;
  line-height: 1.8;
}

.about-profile-details h2 {
  color: #171717;
  font-family: "Playfair Display", serif;
}

.about-profile-card {
  padding: 1.75rem;
  background: #f8f4f1;
  border-left: 3px solid var(--venus-red);
}

.about-profile-card strong {
  color: #222;
}

.about-profile-card a {
  color: var(--venus-red);
  overflow-wrap: anywhere;
}

.about-expertise-list {
  margin: 0;
  padding-left: 1.2rem;
}

.about-expertise-list li + li {
  margin-top: 0.45rem;
}

.stat-box {
  border-left: 3px solid var(--venus-red);
  padding-left: 0.9rem;
  margin-bottom: 1.2rem;
}

.filter-btn {
  position: relative;
  border: 1px solid var(--venus-border);
  padding: 0.55rem 1.2rem;
  margin: 0.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  background: var(--venus-white);
  transition: all 0.25s ease;
}

.sticky-filter {
  position: sticky;
  top: 104px;
  z-index: 20;
  background: rgba(249, 247, 246, 0.92);
  backdrop-filter: blur(6px);
  border: 1px solid #e9e2df;
  border-radius: 14px;
  padding: 0.4rem 0.5rem;
}

.filter-btn::before {
  content: "✓";
  margin-right: 0.35rem;
  opacity: 0;
  transform: translateX(-3px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--venus-red);
  border-color: var(--venus-red);
  color: var(--venus-white);
}

.filter-btn.active::before {
  opacity: 1;
  transform: translateX(0);
}

.featured-project {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 2.2rem;
  min-height: 360px;
  box-shadow: 0 18px 42px rgba(18, 18, 18, 0.2);
}

.featured-project::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.28));
  z-index: 1;
}

.featured-project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-project-content {
  position: absolute;
  z-index: 2;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  color: var(--venus-white);
}

.featured-project-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 0.7rem;
  padding: 0.32rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
}

.featured-pulse-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  background: #c1262c;
  color: #fff;
  border-radius: 999px;
  padding: 0.38rem 0.62rem;
  animation: pulseBadge 1.6s ease infinite;
}

.project-coming {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  padding: 0.33rem 0.54rem;
  border-radius: 999px;
  color: #fff;
  background: #6b6b6b;
}

.project-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #000;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(10, 10, 10, 0.16);
}

.project-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  opacity: 0.85;
}

.project-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--venus-white);
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 1rem;
}

.project-detail-btn {
  margin-top: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  padding: 0.42rem 0.72rem;
}

.project-detail-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.project-zoom-trigger {
  cursor: zoom-in;
}

.project-image-modal .modal-content {
  background: transparent;
}

.project-image-modal .modal-body {
  padding: 0;
}

.project-image-frame {
  position: relative;
  background: rgba(12, 12, 12, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 12px;
}

.project-modal-image {
  width: 100%;
  max-height: min(78vh, 860px);
  object-fit: contain;
  border-radius: 10px;
  display: block;
}

.project-close-btn,
.project-nav-btn {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(18, 18, 18, 0.55);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 2;
  transition: background 0.2s ease, transform 0.2s ease;
}

.project-close-btn {
  top: 20px;
  right: 20px;
}

.project-nav-prev {
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.project-nav-next {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.project-close-btn:hover,
.project-nav-btn:hover {
  background: rgba(163, 29, 35, 0.78);
}

.project-modal-cta {
  margin-top: 1rem;
}

.project-item:hover .project-overlay {
  opacity: 1;
}

.project-item:hover .project-img {
  transform: scale(1.08);
}

.project-category {
  color: #e8a1a5;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.project-category::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.project-meta {
  font-size: 0.72rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: 0.78;
  margin-top: 0.35rem;
}

.project-snippet {
  font-size: 0.82rem;
  line-height: 1.4;
  opacity: 0.86;
  max-width: 250px;
  margin: 0.45rem auto 0;
}

.testimonial-section {
  background: linear-gradient(180deg, #f8f4f2 0%, #f1ebea 100%);
}

.testimonial-card {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid var(--venus-border);
  border-radius: 18px;
  padding: 2.1rem 1.6rem;
  box-shadow: 0 12px 34px rgba(18, 18, 18, 0.08);
}

.testimonial-stars {
  color: #ca3e3e;
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
}

.testimonial-text {
  font-size: 1.07rem;
  line-height: 1.65;
  color: #3e3a39;
}

.testimonial-name {
  font-weight: 700;
  margin-top: 1.2rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: #7b7471;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.contact-form-wrap {
  position: relative;
  border: 1px solid var(--venus-border);
  border-radius: 16px;
  background: #fff;
  padding: 1.6rem;
  box-shadow: 0 10px 28px rgba(20, 20, 20, 0.08);
}

.contact-form-wrap .form-control {
  border-radius: 10px;
  border: 1px solid #d8d2ce;
  padding: 0.72rem 0.85rem;
}

.contact-form-wrap .form-control:focus {
  border-color: #b53a40;
  box-shadow: 0 0 0 0.2rem rgba(163, 29, 35, 0.12);
}

.materials-card {
  border: 1px solid var(--venus-border);
  border-radius: 18px;
  background: #fff;
}

.materials-lead {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.materials-pdf-wrap {
  border: 1px solid #ddd4d1;
  border-radius: 14px;
  overflow: hidden;
  background: #f6f3f2;
}

.materials-pdf-frame {
  display: block;
  width: 100%;
  height: min(78vh, 920px);
  border: 0;
}

.form-toast {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  border: 1px solid #ddd4d1;
  border-left: 4px solid #23a455;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  padding: 0.75rem 0.95rem;
  z-index: 20;
  width: min(92%, 440px);
  text-align: center;
  opacity: 0;
  transform: translate(-50%, -46%);
  pointer-events: none;
  transition: all 0.24s ease;
}

.form-toast.show {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.compare-wrap {
  border: 1px solid var(--venus-border);
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  position: relative;
  box-shadow: 0 14px 34px rgba(18, 18, 18, 0.14);
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
}

.compare-base,
.compare-after {
  width: 100%;
  height: clamp(250px, 38vw, 470px);
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.compare-base-wrap,
.compare-after-wrap {
  display: block;
}

.compare-after-wrap {
  position: absolute;
  inset: 0;
}

.compare-after {
  position: absolute;
  inset: 0;
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.compare-handle::after {
  content: "\2194";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #1d1d1d;
  display: grid;
  place-items: center;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.compare-range {
  width: 100%;
  margin-top: 1rem;
}

.client-logos-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4.5rem, 7vw, 7rem) 0;
  color: #fff;
  background:
    radial-gradient(circle at 14% 18%, rgba(163, 29, 35, 0.2), transparent 32%),
    radial-gradient(circle at 86% 78%, rgba(255, 255, 255, 0.06), transparent 30%),
    #121212;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.client-logos-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.client-logos-heading {
  max-width: 820px;
  margin: 0 auto clamp(2.25rem, 4vw, 3.5rem);
}

.client-logos-eyebrow {
  margin-bottom: 0.8rem;
  color: #ef5b62;
}

.client-logos-title {
  margin-bottom: 0.85rem;
  color: #fff;
}

.client-logos-lead {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.3vw, 1.15rem);
  max-width: 1320px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.client-logo-item {
  display: flex;
  min-width: 0;
  grid-column: span 2;
  flex-direction: column;
  align-items: stretch;
  gap: 0.7rem;
}

.client-logo-item:nth-last-child(4):nth-child(5n + 1) {
  grid-column: 2 / span 2;
}

.client-logo-visual {
  display: flex;
  min-height: 118px;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.15rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.client-logo-visual img {
  display: block;
  width: 100%;
  max-width: 190px;
  height: 78px;
  object-fit: contain;
}

.client-logo-item:hover .client-logo-visual {
  transform: translateY(-5px);
  border-color: rgba(239, 91, 98, 0.75);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
}

.client-logo-caption {
  display: block;
  min-height: 2.7em;
  padding: 0 0.25rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(0.65rem, 0.72vw, 0.76rem);
  font-weight: 600;
  letter-spacing: 0.035em;
  line-height: 1.35;
  text-align: center;
  text-wrap: balance;
}

.client-logo-visual--wordmark {
  background: #fff;
}

.client-logo-visual--cigeristan {
  background: #9a0002;
  border-color: #9a0002;
}

.client-logo-visual--kunefedeyiz {
  background: #000;
  border-color: #000;
}

.client-logo-visual--dark {
  background:
    radial-gradient(circle at 20% 50%, rgba(163, 29, 35, 0.24), transparent 42%),
    #231f1c;
  border-color: rgba(255, 255, 255, 0.16);
}

.client-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #171717;
  font-size: clamp(1.05rem, 1.55vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1;
  text-align: center;
}

.client-wordmark small {
  margin-top: 0.48rem;
  color: var(--venus-red);
  font-size: 0.56em;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.25;
}

.client-wordmark--serif {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.045em;
}

.map-container {
  height: clamp(360px, 46vw, 460px);
  border-top: 1px solid var(--venus-border);
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(163, 29, 35, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(246, 243, 241, 0.92), rgba(236, 231, 227, 0.96));
}

.contact-map {
  width: 100%;
  height: 100%;
}

.contact-map .leaflet-control-zoom a {
  color: #1d1d1d;
}

.contact-map .leaflet-popup-content-wrapper {
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(22, 18, 16, 0.18);
}

.contact-map .leaflet-popup-content {
  margin: 0.9rem 1rem;
  font-family: "Montserrat", sans-serif;
  color: #2f2825;
}

.contact-map .leaflet-popup-content strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.contact-map .leaflet-popup-content span {
  display: block;
  line-height: 1.6;
  margin-bottom: 0.45rem;
}

.contact-map .leaflet-popup-content a {
  color: var(--venus-red);
  font-weight: 700;
  text-decoration: none;
}

.contact-map .leaflet-popup-content a:hover {
  text-decoration: underline;
}

.contact-map-tooltip {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(163, 29, 35, 0.18);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(20, 15, 13, 0.14);
  color: #1d1d1d;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.7rem;
  text-transform: uppercase;
}

.contact-map-tooltip::before {
  display: none;
}

footer {
  margin-top: 2rem;
  background: #f6f3f1;
  border-top: 1px solid var(--venus-border);
  padding: 3.5rem 0 2rem;
}

.footer-link {
  color: #4c4a49;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--venus-red);
}

.footer-email {
  color: #4c4a49;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-powered {
  color: #5f5a57;
}

.footer-powered-link {
  text-decoration: none;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d2cbca;
  color: #444;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-socials a:hover {
  color: #fff;
  background: var(--venus-red);
  border-color: var(--venus-red);
}

.footer-trust {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.76rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #7d7875;
  margin-bottom: 0;
}

.footer-trust span {
  position: relative;
}

.footer-trust span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.45rem;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #b9b2ae;
  transform: translateY(-50%);
}

.vhs-brand-font {
  font-weight: 700;
  letter-spacing: 0.6px;
}

.vhs-venus,
.vhs-software {
  color: #2a2a2a;
}

.vhs-hard {
  color: #d06b31;
}

.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(145deg, #25d366, #1faa51);
  box-shadow: 0 12px 26px rgba(18, 124, 61, 0.38);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-fab-stack {
  position: fixed;
  right: 22px;
  bottom: 18px;
  z-index: 1099;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-fab {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.contact-fab-instagram {
  background: linear-gradient(145deg, #f58529, #dd2a7b 45%, #8134af 70%, #515bd4);
}

.contact-fab-x {
  background: linear-gradient(145deg, #222, #000);
}

.contact-fab-mail {
  background: linear-gradient(145deg, #3a4c66, #253346);
}

.contact-fab-phone {
  background: linear-gradient(145deg, #b3272f, #8f171d);
}

.contact-fab-wa {
  background: linear-gradient(145deg, #25d366, #1faa51);
}

.contact-fab:hover {
  transform: scale(1.06);
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.28);
  filter: brightness(1.03);
}

.scroll-progress {
  --scroll-progress: 0%;
  position: fixed;
  inset: 0 auto auto 0;
  width: var(--scroll-progress);
  height: 3px;
  background: linear-gradient(90deg, #a31d23, #d06b31);
  z-index: 1200;
  pointer-events: none;
}

.top-fab {
  position: fixed;
  right: 76px;
  bottom: 92px;
  z-index: 1099;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(163, 29, 35, 0.35);
  background: rgba(255, 255, 255, 0.95);
  color: #1d1d1d;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.top-fab.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.top-fab:hover {
  background: #fff;
}

.sticky-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1085;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  padding: 0.55rem 0.6rem calc(0.55rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid #ddd4d0;
  backdrop-filter: blur(8px);
}

.sticky-cta-btn {
  text-decoration: none;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 10px;
  padding: 0.62rem 0.45rem;
  border: 1px solid #d9cfcb;
}

.sticky-cta-call {
  color: #1b1b1b;
  background: #fff;
}

.sticky-cta-wa {
  color: #fff;
  border-color: #1faa51;
  background: linear-gradient(140deg, #25d366, #1faa51);
}

.sticky-cta-offer {
  color: #fff;
  border-color: #8f171d;
  background: linear-gradient(140deg, #a31d23, #bf3a40);
}

.whatsapp-fab:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 30px rgba(18, 124, 61, 0.45);
}

.whatsapp-tip {
  position: absolute;
  right: 68px;
  bottom: 12px;
  white-space: nowrap;
  background: #fff;
  color: #2d2d2d;
  border: 1px solid #dbd4cf;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.74rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: all 0.25s ease;
}

.whatsapp-tip.show {
  opacity: 1;
  transform: translateY(0);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  margin: 0.4rem auto 0;
  background: rgba(255, 255, 255, 0.65);
  animation: cueDrop 1.4s ease-in-out infinite;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes pulseBadge {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(193, 38, 44, 0.3);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(193, 38, 44, 0);
  }
}

@keyframes cueDrop {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.55;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

@keyframes cardRise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  body.has-sticky-cta {
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }

  .navbar > .container {
    align-items: center;
  }

  .navbar-toggler {
    display: block !important;
    order: 2;
    margin-left: auto;
    color: var(--venus-black);
  }

  .navbar-toggler .bi-list::before {
    content: "\2630";
    font-family: Arial, sans-serif;
    font-size: 1.7rem;
    line-height: 1;
  }

  .navbar-collapse {
    order: 4;
    flex-basis: 100%;
  }

  .nav-link {
    margin-left: 0;
    padding: 0.45rem 0;
  }

  .lang-switcher {
    order: 3;
    flex: 0 0 100%;
    justify-content: center;
    margin-left: 0;
    margin-top: 0.65rem;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(16, 16, 16, 0.08);
  }

  @media (max-width: 575.98px) {
    .navbar-brand {
      max-width: calc(100% - 54px);
      font-size: clamp(1rem, 5.5vw, 1.3rem);
      letter-spacing: 0.25px;
      white-space: nowrap;
    }
  }

  .hero {
    min-height: 70vh;
  }

  .hero-page {
    min-height: 38vh;
  }

  .hero-main {
    flex-direction: column;
    text-align: center;
  }

  .hero-copy {
    padding: 1rem;
  }

  .announcement-bar {
    font-size: 0.72rem;
  }

  .sticky-filter {
    top: 96px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-logo-badge {
    animation: none;
  }

  .featured-project {
    min-height: 300px;
  }

  .featured-pulse-badge {
    top: 0.7rem;
    right: 0.7rem;
  }

  .featured-project-content {
    left: 1.3rem;
    right: 1.3rem;
    bottom: 1.3rem;
  }

  .project-item {
    aspect-ratio: 16 / 11;
  }

  .footer-bottom {
    text-align: center;
  }

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

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

  .btn-venus,
  .btn-venus-outline {
    width: 100%;
  }

  .contact-fab-stack {
    right: 16px;
    bottom: 126px;
  }

  .top-fab {
    right: 66px;
    bottom: 184px;
  }

  .sticky-cta-bar {
    display: grid;
  }

  .scroll-cue {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  .client-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .client-logo-item,
  .client-logo-item:nth-last-child(4):nth-child(5n + 1) {
    grid-column: auto;
  }
}

@media (max-width: 767.98px) {
  .client-logos-section {
    padding: 3.75rem 0;
  }

  .client-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem 0.65rem;
  }

  .client-logo-visual {
    min-height: 98px;
    padding: 0.8rem;
    border-radius: 11px;
  }

  .client-logo-visual img {
    height: 64px;
  }

  .client-logo-caption {
    font-size: 0.62rem;
  }

  .client-wordmark {
    font-size: clamp(0.88rem, 4vw, 1.1rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
