/* ================================
   Zenvora — Diversified Investment
   Premium Navy / Emerald / Soft Gold
================================ */

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

:root {
  --bg-primary: #070d15;
  --bg-secondary: #0b1320;
  --bg-tertiary: #111c2b;
  --bg-card: #131f2e;
  --bg-card-hover: #182838;
  --bg-elevated: #18283a;
  --border: #1f2e40;
  --border-light: #2a3d52;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --accent: #10b981;
  --accent-hover: #34d399;
  --accent-dark: #047857;
  --accent-glow: rgba(16, 185, 129, 0.12);
  --accent-strong: rgba(16, 185, 129, 0.25);
  --gold: #d4b876;
  --gold-hover: #e6c989;
  --gold-soft: rgba(212, 184, 118, 0.14);
  --success: #4ade80;
  --error: #f87171;
  --max-width: 1440px;
  --header-height: 76px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 20px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-feature-settings: "cv11", "ss01";
  position: relative;
}

body.nav-open {
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  /* No height/min-height — keep body's natural content height so the
       flex column doesn't squish (which briefly exposed the footer). */
}

main {
  flex: 1;
  width: 100%;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--accent);
  color: #070d15;
}

/* ================================
   Container
================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

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

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

/* ================================
   Typography
================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text-primary);
  word-wrap: break-word;
}

h1 {
  font-size: clamp(2.25rem, 5.5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  word-wrap: break-word;
}

.lead {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.65;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid var(--accent-dark);
  border-radius: 100px;
  background: var(--accent-glow);
  max-width: 100%;
}

.section-tag.plain {
  padding: 0;
  border: none;
  background: none;
}

.gradient-text {
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-hover) 45%,
    var(--gold-hover) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================
   Buttons
================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
  line-height: 1;
}

.btn-primary {
  background: var(--accent);
  color: #050b13;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(16, 185, 129, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #050b13;
}

.btn-large {
  padding: 18px 36px;
  font-size: 1rem;
}

.btn-arrow svg {
  transition: transform 0.25s ease;
}

.btn-arrow:hover svg {
  transform: translateX(4px);
}

/* ================================
   Header
================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 13, 21, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
  width: 100%;
}

.header.scrolled {
  background: rgba(7, 13, 21, 0.94);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  z-index: 110;
  position: relative;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #050b13;
  font-weight: 800;
  font-size: 1.0625rem;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.32);
}

.logo-text {
  color: var(--text-primary);
}

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

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 500;
  position: relative;
  padding: 10px 16px;
  border-radius: 100px;
  display: inline-block;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.nav-link.active {
  color: var(--accent);
  background: var(--accent-glow);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 110;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  z-index: 130;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  flex-shrink: 0;
  position: relative;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* nav-header: visible only inside the mobile slide-in menu */
.nav-header {
  display: none;
}

.nav-mobile-cta {
  display: none;
}

@media (max-width: 1024px) {
  .burger {
    display: flex;
  }

  /* When mobile menu is open: hide every .logo (header, footer, anywhere)
       and the entire header-actions row to prevent ANY duplicate / overlap.
       Only the .nav-logo (different class, inside .nav-header) remains. */
  body.nav-open .logo,
  body.nav-open .header-actions {
    display: none !important;
  }

  body.nav-open .header {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    height: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-width: 100vw;
    background: var(--bg-primary);
    padding: 0;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    align-items: stretch;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 0;
    visibility: visible;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    height: var(--header-height);
    border-bottom: 1px solid var(--border);
    background: var(--bg-secondary);
    flex-shrink: 0;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    text-decoration: none;
  }

  .nav-logo .logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #050b13;
    font-weight: 800;
    font-size: 1rem;
  }

  .nav-close {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
  }

  .nav-close:hover,
  .nav-close:active {
    background: var(--accent);
    color: #050b13;
    border-color: var(--accent);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    padding: 28px 22px 16px;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-link {
    display: flex;
    align-items: center;
    padding: 18px 22px;
    font-size: 1.0625rem;
    font-weight: 500;
    width: 100%;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    line-height: 1.2;
  }

  .nav-link:hover,
  .nav-link.active {
    background: var(--bg-card-hover);
    border-color: var(--accent-dark);
    color: var(--accent);
  }

  .nav-mobile-cta {
    display: block !important;
    width: 100%;
    margin-top: auto;
    padding: 24px 22px 28px;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
  }

  .nav-mobile-cta .btn {
    width: 100%;
    padding: 18px;
    font-size: 1rem;
  }

  .header-actions .btn-secondary {
    display: none;
  }

  .header-actions > .btn-primary {
    display: none;
  }
}

/* ================================
   Hero Section
================================ */
.hero {
  position: relative;
  padding: 100px 0 140px;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 90% 60% at 80% 0%,
      rgba(16, 185, 129, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 70% 50% at 0% 100%,
      rgba(212, 184, 118, 0.06) 0%,
      transparent 60%
    ),
    var(--bg-primary);
  width: 100%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(
    ellipse 80% 60% at 50% 30%,
    #000 30%,
    transparent 80%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 80% 60% at 50% 30%,
    #000 30%,
    transparent 80%
  );
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 28px;
}

.hero-content .lead {
  margin-bottom: 44px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
  color: var(--text-muted);
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.hero-trust-dots {
  display: flex;
}

.hero-trust-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--bg-primary);
  margin-left: -10px;
  background-size: cover;
  background-position: center;
}

.hero-trust-dot:first-child {
  margin-left: 0;
}
.hero-trust-dot:nth-child(1) {
  background-image: url("https://images.unsplash.com/photo-1535713875002-d1d0cf377fde?auto=format&fit=crop&w=80&q=80");
}
.hero-trust-dot:nth-child(2) {
  background-image: url("https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=80&q=80");
}
.hero-trust-dot:nth-child(3) {
  background-image: url("https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&w=80&q=80");
}
.hero-trust-dot:nth-child(4) {
  background-image: url("https://images.unsplash.com/photo-1438761681033-6461ffad8d80?auto=format&fit=crop&w=80&q=80");
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 44px;
  border-top: 1px solid var(--border);
}

.stat-value {
  font-size: clamp(1.625rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.025em;
  line-height: 1;
}

.stat-value .accent {
  color: var(--accent);
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(16, 185, 129, 0.08);
  max-width: 100%;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 55%,
    rgba(7, 13, 21, 0.55) 100%
  );
  pointer-events: none;
}

.hero-card {
  position: absolute;
  background: rgba(19, 31, 46, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  z-index: 2;
  max-width: calc(100% - 48px);
}

.hero-card.top-right {
  top: 24px;
  right: 24px;
}

.hero-card.bottom-left {
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-card-label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.hero-card-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.hero-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .hero {
    padding: 60px 0 80px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .hero-visual {
    aspect-ratio: 16/12;
    max-width: 600px;
    margin: 0 auto;
  }
  .hero-stats {
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }
  .hero-card {
    padding: 12px 14px;
  }
  .hero-card-value {
    font-size: 1.125rem;
  }
  .hero-card.top-right {
    top: 16px;
    right: 16px;
  }
  .hero-card.bottom-left {
    bottom: 16px;
    left: 16px;
  }
}

/* ================================
   Page Hero (inner pages)
================================ */
.page-hero {
  padding: 80px 0 64px;
  background:
    radial-gradient(
      ellipse 80% 50% at 50% 0%,
      rgba(16, 185, 129, 0.1) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 60% 40% at 90% 100%,
      rgba(212, 184, 118, 0.05) 0%,
      transparent 65%
    ),
    var(--bg-primary);
  border-bottom: 1px solid var(--border);
  position: relative;
  width: 100%;
  overflow: hidden;
}

.page-hero-inner {
  max-width: 880px;
}

.page-hero h1 {
  margin-bottom: 24px;
}

.page-hero .lead {
  font-size: clamp(1.0625rem, 1.5vw, 1.375rem);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb-separator {
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .page-hero {
    padding: 56px 0 48px;
  }
}

/* ================================
   Section
================================ */
.section {
  padding: 110px 0;
  position: relative;
  width: 100%;
}

.section-alt {
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 72px;
}

.section-header h2 {
  margin-bottom: 20px;
}

.section-header.left-align {
  text-align: left;
  margin-left: 0;
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
  .section-header {
    margin-bottom: 40px;
  }
}

/* ================================
   Reveal animation
================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

/* ================================
   Features Grid (legacy / fallback)
================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    var(--accent-glow),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-glow), transparent);
  border: 1px solid var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
  position: relative;
  flex-shrink: 0;
}

.feature-card h3 {
  font-size: 1.1875rem;
  margin-bottom: 12px;
  position: relative;
}

.feature-card p {
  font-size: 0.9375rem;
  position: relative;
}

/* ================================
   Features Slider (interactive)
================================ */
.features-slider {
  position: relative;
  width: 100%;
}

.features-viewport {
  overflow: hidden;
  margin: 0 -10px;
}

.features-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.features-slide {
  flex: 0 0 100%;
  padding: 0 10px;
  box-sizing: border-box;
  min-width: 0;
}

.features-slide .feature-card {
  height: 100%;
  min-height: 240px;
}

@media (min-width: 640px) {
  .features-slide {
    flex: 0 0 50%;
  }
}

@media (min-width: 1024px) {
  .features-slide {
    flex: 0 0 33.333%;
  }
}

.features-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.features-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.features-nav:hover:not(:disabled) {
  background: var(--accent);
  color: #050b13;
  border-color: var(--accent);
  transform: scale(1.05);
}

.features-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.features-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.features-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-light);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
  border: none;
  flex-shrink: 0;
}

.features-dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 5px;
}

/* ================================
   Investments / Properties Grid
================================ */
.investments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

@media (max-width: 600px) {
  .investments-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.property-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.property-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-light);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.property-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.property-card:hover .property-image img {
  transform: scale(1.06);
}

.property-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(7, 13, 21, 0.82);
  backdrop-filter: blur(10px);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid var(--accent-dark);
}

.property-status {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(74, 222, 128, 0.15);
  color: var(--success);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 600;
  border: 1px solid rgba(74, 222, 128, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.property-status.closed {
  background: rgba(107, 107, 107, 0.15);
  color: var(--text-muted);
  border-color: var(--border-light);
}

.property-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.property-location {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.property-card h3 {
  font-size: 1.3125rem;
  margin-bottom: 14px;
  line-height: 1.3;
}

.property-description {
  font-size: 0.9375rem;
  margin-bottom: 24px;
  flex: 1;
}

.property-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.property-stat-label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.property-stat-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  word-break: break-word;
}

.property-stat-value.accent {
  color: var(--accent);
}

@media (max-width: 380px) {
  .property-stats {
    gap: 8px;
  }
  .property-stat-value {
    font-size: 0.875rem;
  }
  .property-body {
    padding: 22px;
  }
}

.property-progress {
  margin-bottom: 24px;
}

.property-progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.875rem;
  flex-wrap: wrap;
  gap: 8px;
}

.property-progress-bar {
  height: 6px;
  background: var(--bg-tertiary);
  border-radius: 3px;
  overflow: hidden;
}

.property-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
  border-radius: 3px;
  transition: width 0.8s ease;
  width: 0;
}

/* ================================
   Steps Section
================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: var(--transition);
}

.step:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-glow);
  border: 1px solid var(--accent-dark);
  color: var(--accent);
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.step h3 {
  font-size: 1.1875rem;
  margin-bottom: 12px;
}

.step p {
  font-size: 0.9375rem;
}

/* ================================
   Slider (properties)
================================ */
.slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: stretch;
  min-height: 480px;
}

.slide-image {
  overflow: hidden;
  position: relative;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 50%,
    rgba(7, 13, 21, 0.45) 100%
  );
}

.slide-content {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-content .section-tag {
  margin-bottom: 18px;
}

.slide-content h3 {
  font-size: clamp(1.375rem, 2.5vw, 2.25rem);
  margin-bottom: 18px;
  line-height: 1.15;
}

.slide-content p {
  margin-bottom: 32px;
  font-size: 1rem;
}

.slide-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.slide-stat-label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.slide-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.slider-controls {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  gap: 12px;
  z-index: 2;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(19, 31, 46, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--accent);
  color: #050b13;
  border-color: var(--accent);
}

.slider-dots {
  position: absolute;
  bottom: 38px;
  left: 56px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
  border: none;
}

.slider-dot.active {
  background: var(--accent);
  width: 30px;
  border-radius: 5px;
}

@media (max-width: 900px) {
  .slide {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .slide-image {
    aspect-ratio: 16/10;
  }
  .slide-content {
    padding: 28px 24px 88px;
  }
  .slider-dots {
    left: 24px;
    bottom: 28px;
  }
  .slider-controls {
    right: 20px;
    bottom: 20px;
  }
  .slider-btn {
    width: 40px;
    height: 40px;
  }
  .slide-stats {
    gap: 16px;
  }
  .slide-stat-value {
    font-size: 1.25rem;
  }
}

/* ================================
   FAQ Accordion
================================ */
.faq-list {
  max-width: 920px;
  margin: 0 auto;
}

.faq-intro {
  max-width: 880px;
  margin: 0 auto 56px;
  text-align: center;
}

.faq-intro p {
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--border-light);
}

.faq-item.active {
  border-color: var(--accent-dark);
  background: var(--bg-card-hover);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: var(--transition);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: var(--transition);
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 1px;
  transition: var(--transition);
}

.faq-icon::before {
  width: 12px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 12px;
}

.faq-item.active .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(45deg);
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
  background: #050b13;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 28px 26px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.faq-answer-inner p + p {
  margin-top: 14px;
}

@media (max-width: 600px) {
  .faq-question {
    padding: 20px 18px;
    font-size: 0.9375rem;
    gap: 14px;
  }
  .faq-answer-inner {
    padding: 0 18px 22px;
  }
  .faq-icon {
    width: 28px;
    height: 28px;
  }
}

/* ================================
   CTA Section
================================ */
.cta {
  background: linear-gradient(135deg, #131f2e 0%, #0b1320 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  right: -10%;
  height: 200%;
  background: radial-gradient(
    ellipse at center,
    var(--accent-glow) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(
    ellipse 80% 60% at 50% 50%,
    #000 0%,
    transparent 80%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 80% 60% at 50% 50%,
    #000 0%,
    transparent 80%
  );
  pointer-events: none;
}

.cta-content {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  z-index: 1;
}

.cta h2 {
  margin-bottom: 20px;
}

.cta p {
  margin-bottom: 36px;
  font-size: 1.0625rem;
}

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

@media (max-width: 768px) {
  .cta {
    padding: 48px 24px;
    border-radius: 20px;
  }
  .cta-actions .btn {
    width: 100%;
  }
}

/* ================================
   FORM (exact required form)
================================ */
.form-section {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.form-section-title {
  margin-bottom: 12px;
}

.form-section-subtitle {
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-size: 0.9375rem;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.form .f-inputs {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 0.9375rem;
  color: var(--text-primary);
  transition: var(--transition);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  max-width: 100%;
}

.form .f-inputs::placeholder {
  color: var(--text-muted);
}

.form .f-inputs:hover {
  border-color: var(--border-light);
}

.form .f-inputs:focus {
  border-color: var(--accent);
  background: var(--bg-card);
  box-shadow: 0 0 0 4px var(--accent-glow);
}

.form .f-inputs:autofill,
.form .f-inputs:-webkit-autofill {
  -webkit-text-fill-color: var(--text-primary);
  -webkit-box-shadow: 0 0 0 1000px var(--bg-tertiary) inset;
  box-shadow: 0 0 0 1000px var(--bg-tertiary) inset;
  transition: background-color 9999s ease-in-out 0s;
}

.form button[type="submit"] {
  background: var(--accent);
  color: #050b13;
  font-weight: 600;
  font-size: 1rem;
  padding: 18px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
  border: none;
  font-family: inherit;
  width: 100%;
}

.form button[type="submit"]:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(16, 185, 129, 0.28);
}

.form button[type="submit"]:active {
  transform: translateY(0);
}

@media (max-width: 600px) {
  .form-section {
    padding: 28px 22px;
  }
}

.form-disclaimer {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 18px;
  text-align: center;
  line-height: 1.6;
}

.form-disclaimer a {
  color: var(--accent);
}

.form-disclaimer a:hover {
  text-decoration: underline;
}

.form-policy-links {
  display: flex;
  gap: 8px 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
}

.form-policy-links a {
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
  font-weight: 500;
}

.form-policy-links a:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-policy-links a svg {
  color: var(--accent);
  opacity: 0.8;
}

/* ================================
   Two Column Layout
================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.two-col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.two-col-content h2 {
  margin-bottom: 22px;
}

.two-col-content p {
  margin-bottom: 18px;
}

.two-col-content .feature-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-list-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1px solid var(--accent-dark);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-list-text {
  color: var(--text-secondary);
  line-height: 1.65;
}

.feature-list-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ================================
   Stats Banner
================================ */
.stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stats-banner-item {
  padding: 40px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stats-banner-item:last-child {
  border-right: none;
}

.stats-banner-value {
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
  letter-spacing: -0.025em;
  line-height: 1;
}

.stats-banner-label {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

@media (max-width: 900px) {
  .stats-banner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-banner-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .stats-banner-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }
  .stats-banner-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

@media (max-width: 500px) {
  .stats-banner {
    grid-template-columns: 1fr;
  }
  .stats-banner-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }
  .stats-banner-item:last-child {
    border-bottom: none;
  }
}

/* ================================
   Team Grid
================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.team-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.team-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.04);
}

.team-body {
  padding: 26px;
}

.team-card h4 {
  font-size: 1.1875rem;
  margin-bottom: 6px;
}

.team-role {
  color: var(--accent);
  font-size: 0.75rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.team-bio {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* ================================
   Contact
================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  max-width: 980px;
  margin: 0 auto;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-glow);
  border: 1px solid var(--accent-dark);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 1.0625rem;
  margin-bottom: 4px;
}

.contact-card p,
.contact-card a {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  word-break: break-word;
}

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

/* ================================
   Logo Strip — INFINITE CAROUSEL
================================ */
.logo-strip {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-strip::before,
.logo-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.logo-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-secondary), transparent);
}

.logo-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-secondary), transparent);
}

.logo-strip-track {
  --logo-gap: 64px;
  display: flex;
  gap: var(--logo-gap);
  width: max-content;
  animation: logo-scroll 35s linear infinite;
  align-items: center;
  will-change: transform;
}

.logo-strip:hover .logo-strip-track {
  animation-play-state: paused;
}

@keyframes logo-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - var(--logo-gap) / 2));
  }
}

.logo-strip-item {
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease;
  flex-shrink: 0;
  white-space: nowrap;
  cursor: default;
}

.logo-strip-item:hover {
  color: var(--accent);
}

@media (max-width: 600px) {
  .logo-strip-track {
    --logo-gap: 44px;
    animation-duration: 25s;
  }
  .logo-strip-item {
    font-size: 0.8125rem;
  }
}

/* ================================
   Testimonial cards
================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: var(--transition);
}

.testimonial:hover {
  border-color: var(--border-light);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--accent);
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-primary);
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9375rem;
}

.testimonial-role {
  color: var(--text-muted);
  font-size: 0.8125rem;
  margin-top: 2px;
}

/* ================================
   Comparison table — RESPONSIVE
================================ */
.comparison-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--border-light) transparent;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 100%;
  position: relative;
}

.comparison-hint {
  display: none;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8125rem;
  margin-top: 12px;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media (max-width: 700px) {
  .comparison-hint {
    display: flex;
  }
}

.comparison-wrap::-webkit-scrollbar {
  height: 8px;
}
.comparison-wrap::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 4px;
}

.comparison {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-width: 640px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row.head {
  background: var(--bg-tertiary);
}

.comparison-cell {
  padding: 20px 24px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 8px;
  border-right: 1px solid var(--border);
}

.comparison-cell:last-child {
  border-right: none;
}

.comparison-cell.head {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.comparison-cell.zenvora {
  color: var(--accent);
  font-weight: 600;
  background: var(--accent-glow);
}

.comparison-yes {
  color: var(--success);
}

.comparison-no {
  color: var(--text-muted);
}

@media (max-width: 700px) {
  .comparison-cell {
    padding: 16px 18px;
    font-size: 0.875rem;
  }
  .comparison-cell.head {
    font-size: 0.75rem;
  }
}

/* ================================
   Trust pillars (investments)
================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.trust-card:hover {
  border-color: var(--accent-dark);
  transform: translateY(-4px);
}

.trust-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--accent), var(--gold-hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-card h3 {
  font-size: 1.1875rem;
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 0.9375rem;
}

/* ================================
   Legal
================================ */
.legal-content {
  max-width: 880px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 48px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.125rem;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.legal-meta {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 40px;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ================================
   Footer
================================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
  margin-top: 80px;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .logo {
  margin-bottom: 22px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 24px;
  max-width: 360px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-social-link:hover {
  background: var(--accent);
  color: #050b13;
  border-color: var(--accent);
}

.footer-col h5 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 22px;
  font-weight: 600;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

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

.footer-disclaimer {
  margin-top: 24px;
  padding: 20px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 56px 0 28px;
    margin-top: 56px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ================================
   Utilities
================================ */
.text-center {
  text-align: center;
}
.mt-32 {
  margin-top: 32px;
}
.mt-48 {
  margin-top: 48px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mb-32 {
  margin-bottom: 32px;
}

.split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ================================
   Sectors grid (large cards with image)
================================ */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .sectors-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.sector-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.sector-card:hover {
  border-color: var(--accent-dark);
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
}

.sector-card-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.sector-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sector-card:hover .sector-card-image img {
  transform: scale(1.05);
}

.sector-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 13, 21, 0) 30%,
    rgba(7, 13, 21, 0.75) 100%
  );
  pointer-events: none;
}

.sector-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(7, 13, 21, 0.78);
  backdrop-filter: blur(10px);
  color: var(--gold-hover);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid rgba(212, 184, 118, 0.3);
  z-index: 2;
}

.sector-card-body {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sector-card h3 {
  font-size: 1.375rem;
  margin-bottom: 14px;
}

.sector-card p {
  font-size: 0.9375rem;
  margin-bottom: 20px;
  flex: 1;
}

.sector-list {
  list-style: none;
  padding: 0;
  margin: 0 0 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}

.sector-list li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

.sector-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 7px;
}

@media (max-width: 600px) {
  .sector-card-body {
    padding: 24px 22px;
  }
  .sector-list {
    grid-template-columns: 1fr;
  }
}

/* ================================
   Partners strip
================================ */
.partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.partner-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.partner-card:hover {
  border-color: var(--accent-dark);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.partner-card-name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.partner-card-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ================================
   Project tile (energy / marine / commercial named projects)
================================ */
.projects-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.project-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.project-tile:hover {
  border-color: var(--accent-dark);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.project-tile-tag {
  font-size: 0.6875rem;
  color: var(--gold-hover);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.project-tile-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.project-tile-desc {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ================================
   Gold accent helper
================================ */
.text-gold {
  color: var(--gold-hover);
}

.gradient-text-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* ================================
   iti
================================ */

.iti__country-name,
.iti__dial-code {
  color: #000;
}
