/* ====== Design Tokens ====== */
:root {
  --bg-1: #0c2d55;
  --bg-2: #12396b;
  --surface-1: rgba(0, 0, 0, 0.3);
  --surface-2: rgba(0, 0, 0, 0.42);
  --border: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --muted: #e9efff;
  --accent: #19b39b;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  --radius: 14px;
  --container: 1100px;
  --focus: 0 0 0 3px rgba(25, 179, 155, 0.45);
}

/* ====== Base ====== */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 820px at 20% 0%, var(--bg-2), var(--bg-1));
  line-height: 1.55;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: 10px;
}

/* ====== Skip Link ====== */
.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(8, 22, 46, 0.95);
  border: 1px solid var(--border);
  text-decoration: none;
  transform: translateY(-200%);
  transition: transform 0.2s ease;
  z-index: 2000;
}

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

/* ====== Header ====== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 22px;
  background: linear-gradient(180deg, rgba(8, 22, 46, 0.96), rgba(8, 22, 46, 0.86));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.brand {
  display: grid;
  gap: 6px;
  text-decoration: none;
  justify-items: center;
}

.brand-title {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.01em;
}

.brand-lines {
  display: flex;
  gap: 8px;
}

.brand-lines > span {
  display: block;
  height: 3px;
  width: 56px;
  background: var(--accent);
  border-radius: 999px;
}

.brand-subtitle {
  font-size: 13px;
  font-weight: 600;
  color: rgba(233, 239, 255, 0.9);
}

.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--text);
  padding: 8px 6px;
  border-radius: 10px;
}

.main-nav a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.main-nav a.active {
  color: var(--accent);
  text-decoration: underline;
}

/* ====== Mobile Nav ====== */
.hamburger {
  display: none;
}

.mobile-nav {
  display: none;
}

@media (max-width: 900px) {
  .brand {
    justify-items: start;
  }

  .topbar > .btn {
    display: none;
  }

  .main-nav {
    display: none;
  }

  .hamburger {
    display: inline-flex;
    position: relative;
    z-index: 1101;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent);
    background: rgba(12, 45, 85, 0.85);
    color: var(--accent);
    padding: 8px 14px;
    border-radius: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
    cursor: pointer;
  }

  .hamburger:hover {
    background: var(--accent);
    color: #06223f;
  }

  .hamburger.is-open {
    background: var(--accent);
    color: #06223f;
  }

  .mobile-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    min-width: 220px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(8, 22, 46, 0.96);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.55);
    padding: 12px;
    flex-direction: column;
    gap: 8px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    display: flex;
    z-index: 1100;
  }

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

  .mobile-nav a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 700;
    padding: 10px 10px;
    border-radius: 10px;
  }

  .mobile-nav a:hover,
  .mobile-nav a.active {
    color: var(--accent);
    text-decoration: underline;
  }
}

/* ====== Floating CTA ====== */
.floating-cta {
  position: fixed;
  right: calc(16px + env(safe-area-inset-right));
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 1200;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

/* ====== Layout ====== */
.section {
  padding: 64px 20px;
  scroll-margin-top: 90px;
}

.section--tight {
  padding-top: 42px;
  padding-bottom: 42px;
}

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

.stack {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.section-header {
  max-width: var(--container);
  margin: 0 auto 18px;
  text-align: center;
}

.section-title {
  margin: 0 0 10px;
  font-size: clamp(28px, 4.3vw, 44px);
  font-weight: 850;
  letter-spacing: 0.01em;
}

.section-subtitle {
  margin: 0 auto;
  max-width: 900px;
  color: rgba(233, 239, 255, 0.92);
  font-size: 18px;
  line-height: 1.65;
}

/* ====== Cards ====== */
.card {
  background: var(--surface-1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 30px 26px;
  box-shadow: var(--shadow);
}

.card h2,
.card h3 {
  margin: 0 0 12px;
}

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

.tight {
  padding-left: 18px;
  margin: 0;
}

.tight li {
  margin: 8px 0;
  color: var(--muted);
}

/* ====== Profile card (About) ====== */
.jp-profile {
  display: flex;
  gap: 14px;
  align-items: center;
}

.jp-profile__media {
  width: 270px;
  flex: 0 0 270px;
  display: flex;
  justify-content: center;
}

.jp-profile__photo {
  width: 233px;
  height: 233px;
  border-radius: 999px;
  object-fit: cover;
  object-position: top;
  display: block;
  margin-top: 6px;
  margin-left: 0;
  border: 4px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.5);
}

.jp-profile__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.jp-profile__cta {
  margin-top: 12px;
  align-self: flex-end;
}

@media (max-width: 700px) {
  .jp-profile {
    flex-direction: column;
    align-items: stretch;
  }

  .jp-profile__media {
    width: 100%;
    flex-basis: auto;
  }

  .jp-profile__photo {
    margin-left: 0;
  }

  .jp-profile__cta {
    align-self: flex-end;
  }
}

/* ====== Hero (Video/Photo) ====== */
.hero {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  max-width: var(--container);
  margin: 0 auto 22px;
  position: relative;
}

.hero--video {
  height: clamp(360px, 60vh, 720px);
  overflow: visible;
}

.hero--video,
.hero--video + .stack {
  --hero-profile-size: clamp(150px, 18vw, 220px);
}

.hero--video + .stack {
  margin-top: calc((var(--hero-profile-size) / 2) + 28px);
}

.hero-media {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
}

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

.hero--photo {
  height: clamp(320px, 45vh, 560px);
  background-size: cover;
  background-position: center 32%;
  background-repeat: no-repeat;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 24px;
  background: radial-gradient(700px 320px at 50% 45%, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  z-index: 1;
}

.hero-profile {
  position: absolute;
  left: 28px;
  bottom: 0;
  transform: translateY(50%);
  z-index: 2;
  pointer-events: none;
}

.hero-profile__photo {
  width: var(--hero-profile-size);
  height: var(--hero-profile-size);
  margin: 0;
}

@media (max-width: 700px) {
  .hero--video,
  .hero--video + .stack {
    --hero-profile-size: 200px;
  }

  .hero-profile {
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
  }

  .hero-profile__photo {
    width: var(--hero-profile-size);
    height: var(--hero-profile-size);
  }
}

.hero-title {
  margin: 0;
  font-weight: 900;
  font-size: clamp(30px, 5vw, 52px);
  letter-spacing: 0.02em;
  color: #18b39b;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.hero-tagline {
  margin: 14px auto 0;
  max-width: 900px;
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(233, 239, 255, 0.95);
  background: rgba(0, 0, 0, 0.26);
  padding: 10px 14px;
  border-radius: 12px;
  backdrop-filter: blur(3px);
}

/* ====== Reusable typography helpers ====== */
.h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.8vw, 40px);
  font-weight: 900;
  letter-spacing: 0.01em;
}

.h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
}

.lead {
  margin: 10px 0 0;
  color: rgba(233, 239, 255, 0.95);
  font-size: 18px;
  line-height: 1.7;
}

.muted {
  color: rgba(233, 239, 255, 0.9);
}

/* ====== Buttons (index2 + reusable) ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  user-select: none;
  white-space: nowrap;
}

.btn--block {
  width: 100%;
}

.btn--primary {
  background: var(--accent);
  color: #06223f;
  border-color: var(--accent);
}

.btn--primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.btn--secondary {
  background: #0a1f3b;
  color: #18b39b;
  border-color: #18b39b;
}

.btn--secondary:hover {
  transform: translateY(-1px);
  border-color: #18b39b;
}

.btn--ghost {
  background: transparent;
  color: rgba(233, 239, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn--ghost:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.38);
}

/* Floating CTA display rules must come after `.btn` because both are 1-class selectors. */
.btn.floating-cta {
  display: none;
}

@media (max-width: 900px) {
  .btn.floating-cta {
    display: inline-flex;
  }
}

/* ====== Topbar extras (index2) ====== */
.topbar--wide {
  flex-wrap: wrap;
}

.topbar-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

@media (max-width: 900px) {
  .topbar-cta {
    display: none;
  }
}

.expertise-title {
  margin: 0;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900;
}

.expertise-subtitle {
  margin: 8px 0 0;
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(233, 239, 255, 0.92);
}

/* ====== Services ====== */
.svc-hero {
  position: relative;
  height: clamp(280px, 42vh, 420px);
  max-width: var(--container);
  margin: 0 auto 18px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.svc-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-hero__text {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  background: radial-gradient(700px 320px at 50% 45%, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
}

.svc-hero__title {
  margin: 0 0 6px;
  font-weight: 900;
  font-size: clamp(28px, 4.6vw, 44px);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.svc-hero__subtitle {
  margin: 0;
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(233, 239, 255, 0.95);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.svc-intro {
  max-width: var(--container);
  margin: 0 auto 26px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(233, 239, 255, 0.95);
  text-align: center;
}

.svc-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.svc-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}

.svc-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.svc-card p {
  margin: 19px 0 31px;
  color: rgba(233, 239, 255, 0.92);
}

.svc-card .btn--secondary {
  align-self: flex-start;
  width: 33%;
}

.svc-btn {
  margin-top: auto;
  align-self: flex-start;
  background: none;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.svc-btn:hover {
  background: var(--accent);
  color: #06223f;
  transform: translateY(-1px);
}

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

/* ====== Index2 layout components ====== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.22);
  color: rgba(233, 239, 255, 0.95);
  font-weight: 800;
  font-size: 13px;
}

.hero2 {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 520px;
  background: rgba(0, 0, 0, 0.2);
}

.hero2__media {
  position: relative;
  min-height: 520px;
}

.hero2__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero2__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 420px at 55% 45%, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.75));
}

.hero2__content {
  padding: 34px 28px;
  display: grid;
  align-content: center;
  gap: 16px;
}

.hero2__title {
  margin: 0;
  font-weight: 950;
  font-size: clamp(32px, 4.8vw, 54px);
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.hero2__lead {
  margin: 0;
  color: rgba(233, 239, 255, 0.95);
  font-size: 18px;
  line-height: 1.7;
}

.hero2__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero2__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 6px;
}

.stat {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
  border-radius: 16px;
  padding: 14px 14px;
}

.stat__value {
  font-weight: 950;
  font-size: 18px;
  color: var(--accent);
}

.stat__label {
  margin-top: 4px;
  font-size: 13px;
  color: rgba(233, 239, 255, 0.92);
}

@media (max-width: 980px) {
  .hero2 {
    grid-template-columns: 1fr;
  }

  .hero2__media {
    min-height: 340px;
  }

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

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: start;
}

.split__side {
  position: sticky;
  top: 92px;
}

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

  .split__side {
    position: static;
  }
}

.panel {
  background: var(--surface-1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.panel--soft {
  background: rgba(255, 255, 255, 0.05);
}

.panel__actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.checklist {
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(233, 239, 255, 0.95);
}

.checklist li {
  margin: 10px 0;
}

.mini-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(233, 239, 255, 0.92);
}

.mini-list li {
  margin: 8px 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.service2 {
  background: rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.35);
  display: grid;
  gap: 10px;
}

.service2__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-pill {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(25, 179, 155, 0.16);
  border: 1px solid rgba(25, 179, 155, 0.35);
  color: var(--accent);
  font-weight: 950;
  letter-spacing: 0.02em;
}

.timeline {
  margin-top: 18px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.24);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.35);
}

.steps {
  margin: 12px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.steps li strong {
  display: inline-block;
  min-width: 88px;
  color: var(--accent);
}

.cta-band {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(25, 179, 155, 0.14), rgba(0, 0, 0, 0.24));
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 900px) {
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ====== Service Modals ====== */
.svc-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.svc-modal.open {
  display: flex;
}

.svc-modal__box {
  background: #0b2647;
  color: rgba(233, 239, 255, 0.98);
  width: min(900px, 92vw);
  max-height: 84vh;
  overflow: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
  padding: 28px 22px 22px;
  position: relative;
}

.svc-modal__title {
  margin: 0 0 12px;
  font-size: 26px;
}

.svc-modal__box p,
.svc-modal__box li {
  font-size: 16px;
  line-height: 1.65;
}

.svc-close {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 28px;
  cursor: pointer;
  color: var(--accent);
  border: none;
  background: none;
  line-height: 1;
}

.svc-close:hover {
  color: #fff;
}

/* ====== Ecosystem ====== */
.ecosystem-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.ecosystem-column {
  background: var(--surface-1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 26px 22px;
  box-shadow: var(--shadow);
}

.ecosystem-column h3 {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 20px;
}

.company-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.company-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(233, 239, 255, 0.92);
  transition: transform 0.16s ease, color 0.16s ease;
}

@media (hover: hover) and (pointer: fine) {
  .company-list li:hover {
    color: var(--accent);
    transform: translateX(8px);
  }
}

.company-list li:last-child {
  border-bottom: none;
}

.logos-section {
  max-width: 1400px;
  margin: 22px auto 0;
  padding: 26px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  justify-items: center;
}

.logo-item {
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.logo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(25, 179, 155, 0.25);
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

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

@media (max-width: 1024px) {
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .logos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-item {
    width: 150px;
    height: 86px;
    padding: 14px;
  }
}

/* ====== Contact ====== */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: start;
}

.contact-text .lbl {
  color: rgba(233, 239, 255, 0.88);
  font-weight: 800;
}

.contact-text a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 750;
}

.contact-text a:hover {
  text-decoration: underline;
}

.contact-photo {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.contact-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .contact-photo {
    max-width: 360px;
    margin: 0 auto;
  }
}

/* ====== Footer ====== */
.site-footer {
  padding: 28px 20px;
  text-align: center;
  color: rgba(233, 239, 255, 0.9);
  background: linear-gradient(180deg, rgba(8, 22, 46, 0.86), rgba(8, 22, 46, 0.95));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 750;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* ====== Reduced motion ====== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ====== Scroll reveal (lightweight) ====== */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ====== FAQ accordion (index2) ====== */
.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item > * {
  box-sizing: border-box;
}

.faq-question {
  list-style: none;
  cursor: pointer;
  padding: 18px 18px;
  font-weight: 900;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.18);
  color: var(--accent);
  font-weight: 950;
  line-height: 1;
  transition: transform 0.15s ease;
}

.faq-item[open] .faq-question::after {
  content: "–";
}

.faq-answer {
  padding: 0 18px 18px;
  color: rgba(233, 239, 255, 0.94);
}

.faq-answer p {
  margin: 0;
}
