/* HorizonX Studios Landing — visual system inspired by influencer.in */
:root {
  --gold: #7b3fd4;
  --gold-dark: #7b3fd4;
  --horizon-purple: #7b3fd4;
  --charcoal: #2d3132;
  --muted: #818384;
  --black: #000;
  --black-soft: #1d1d1d;
  --white: #fff;
  --border: #ccc;
  --red: #ff3b30;
  --green: #2dbf64;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 18px 40px rgba(0, 0, 0, 0.14), 0 8px 18px rgba(0, 0, 0, 0.08);
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Montserrat", system-ui, sans-serif;
  --container: 1140px;
  --header-h: 72px;
  --radius: 0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font-family: inherit;
}

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

.heading {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.18;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  width: min(94%, 1280px);
  margin: 0 auto;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(123, 63, 212, 0.28);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.2px;
  text-transform: none;
  color: var(--charcoal);
}

.logo-sub {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--horizon-purple);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-item:hover > .nav-link {
  color: var(--gold-dark);
}

.chev {
  font-size: 10px;
  opacity: 0.7;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  border: 1px solid #eee;
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 50;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 8px 18px;
  font-size: 13px;
  color: var(--muted);
  transition: background 0.2s, color 0.2s;
}

.dropdown a:hover {
  background: #fafafa;
  color: var(--charcoal);
}

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

.btn-ghost {
  display: none;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border: 1.5px solid var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s;
}

.btn-ghost:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.btn-text {
  display: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.btn-text:hover {
  color: var(--charcoal);
}

.hamburger {
  width: 28px;
  height: 22px;
  background: none;
  border: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  padding: 16px 24px 28px;
  border-top: 1px solid #eee;
  background: var(--white);
  gap: 4px;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid #f3f3f3;
}

.mobile-menu .btn-gold {
  margin-top: 12px;
  text-align: center;
  border-bottom: 0;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  padding: 12px;
}

@media (min-width: 992px) {
  .desktop-nav {
    display: flex;
  }
  .btn-ghost,
  .btn-text {
    display: inline-flex;
  }
  .hamburger,
  .mobile-menu {
    display: none !important;
  }
}

/* ---------- Hero ---------- */
.hero {
  padding: 48px 0 40px;
  background: var(--white);
  text-align: center;
}

.hero-content {
  max-width: 820px;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 45px);
  margin-bottom: 25px;
}

.hero-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-sub p {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.45;
  max-width: 520px;
  text-align: center;
}

.arrow-shape {
  flex-shrink: 0;
  width: 72px;
  height: auto;
}

.arrow-shape.invert {
  filter: invert(1) brightness(2);
}

.hero-btn {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(18px, 3vw, 25px);
  color: var(--charcoal);
  padding: 10px 22px;
  border: 2px dashed #555;
  background: transparent;
  margin-bottom: 40px;
  transition: all 0.5s ease-in-out;
}

.hero-btn:hover {
  color: var(--black);
  background: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 10px;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.stat-box {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.stat-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed var(--gold);
  transition: transform 0.3s ease;
}

.stat-box:hover::before {
  animation: rotateBorder 8s linear infinite;
}

@keyframes rotateBorder {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.stat-box h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.stat-box p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  margin: 0;
}

@media (min-width: 768px) {
  .stat-box {
    width: 160px;
    height: 160px;
  }
  .stat-box h2 {
    font-size: 35px;
  }
  .stat-box p {
    font-size: 15px;
  }
  .hero {
    padding: 60px 0 50px;
  }
}

/* ---------- Video band ---------- */
.video-band {
  position: relative;
  background: var(--black);
  overflow: hidden;
  cursor: pointer;
}

.video-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  z-index: 2;
  line-height: 0;
  pointer-events: none;
}

.video-wave img {
  width: 100%;
  height: auto;
  display: block;
}

.video-poster {
  position: relative;
  min-height: 280px;
}

.video-poster video {
  width: 100%;
  height: auto;
  display: block;
  max-height: 720px;
  object-fit: cover;
  background: #000;
}

.play-fab {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 3;
  transition: transform 0.3s, opacity 0.3s;
}

.play-fab img {
  width: 64px;
  height: 64px;
}

.play-fab:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.video-poster.is-playing .play-fab {
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 768px) {
  .video-poster {
    min-height: 420px;
  }
}

/* ---------- Sections shared ---------- */
.section {
  padding: 70px 0;
}

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  text-align: center;
  margin-bottom: 18px;
}

.section-title.light {
  color: var(--white);
}

.section-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-sub p,
.section-lead {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  text-align: center;
}

.section-sub.light p,
.section-lead.light {
  color: #cfcfcf;
}

.section-lead {
  margin-bottom: 36px;
}

.blackbg {
  background: var(--black);
}

.eyebrow {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.eyebrow.gold {
  color: var(--gold);
}

.section-lead.light {
  color: #cfcfcf;
}

/* ---------- Drama / video cards ---------- */
.drama-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  width: min(90%, 900px);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .drama-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.video-card {
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.video-card:hover {
  transform: translateY(-8px);
}

.video-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #111;
}

.video-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.video-card:hover .video-card-media img {
  transform: scale(1);
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: url("../assets/home/playbtn.png") no-repeat center / contain;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 2;
  pointer-events: none;
}

.video-card.is-playing .play-badge,
.campaign-card.is-playing .play-badge,
.video-card.is-playing > .video-card-media > img,
.campaign-card.is-playing > .campaign-media > img {
  display: none;
}

.inline-video {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  background: #000;
  z-index: 1;
}

.video-card.is-playing .inline-video,
.campaign-card.is-playing .inline-video {
  display: block;
}

.video-card-body {
  background: var(--gold);
  padding: 16px 18px;
  color: var(--black);
}

.video-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.video-card-body p {
  font-size: 13px;
  color: #000;
  margin-bottom: 6px;
}

.video-card-body small {
  font-size: 12px;
  color: #333;
}

/* ---------- Brands marquee ---------- */
.brands-section {
  padding-bottom: 50px;
  overflow: hidden;
}

.brands-rows {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.marquee-reverse .marquee-track {
  animation-duration: 42s;
  animation-direction: reverse;
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 72px;
  padding: 8px 16px;
  flex-shrink: 0;
}

.brand-logo img {
  max-width: 140px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter 0.3s, opacity 0.3s;
}

.brand-logo:hover img {
  filter: none;
  opacity: 1;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Built for carousel ---------- */
.built-for .section-lead {
  margin-bottom: 30px;
}

.carousel {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.carousel-track {
  display: grid;
  grid-template-columns: 1fr;
}

.outline-card {
  display: none;
  text-align: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 40px 32px;
  min-height: 220px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.outline-card.is-active {
  display: flex;
  animation: fadeIn 0.45s ease;
}

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

.outline-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.idea-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 4px;
}

.outline-card p {
  font-size: 15px;
  color: #cfcfcf;
  max-width: 400px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--white);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.carousel-dots button.is-active {
  background: var(--gold);
  border-color: var(--gold);
}

/* ---------- Control Tower ---------- */
.tower-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .tower-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.tower-card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 22px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tower-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold-dark);
  margin-bottom: 4px;
}

.card-subkicker {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.chart-img {
  width: 100%;
  flex: 1;
  object-fit: contain;
}

.metric-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: auto 0;
}

.metric-table th,
.metric-table td {
  border: 1px solid #333;
  padding: 14px 12px;
  text-align: left;
  font-weight: 400;
}

.metric-table th {
  font-weight: 700;
  background: #fafafa;
}

.insight-card {
  align-items: center;
  text-align: center;
  justify-content: center;
}

.insight-icon {
  width: 64px;
  height: 64px;
  background: var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.insight-icon img {
  width: 32px;
  height: 32px;
}

.insight-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.insight-card p {
  font-size: 18px;
  color: #111;
  margin-bottom: 12px;
  line-height: 1.4;
}

.insight-card p span {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 22px;
}

.insight-card small {
  font-size: 13px;
  color: #111;
}

/* ---------- Platform ---------- */
.platform-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .platform-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.platform-card {
  background: var(--white);
  border: 1px solid var(--border);
  min-height: 160px;
  display: flex;
  align-items: center;
  padding: 28px;
  gap: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.45s ease;
}

.platform-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.platform-icon {
  flex: 0 0 56px;
}

.platform-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.platform-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* ---------- Campaigns ---------- */
.campaigns-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  width: min(92%, 1000px);
  margin: 0 auto;
}

@media (min-width: 600px) {
  .campaigns-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .campaigns-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.campaign-card {
  display: block;
  overflow: hidden;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.campaign-card:hover {
  transform: translateY(-8px);
}

.campaign-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}

.campaign-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-body {
  display: block;
  width: 100%;
  background: var(--gold);
  padding: 14px 16px;
}

.campaign-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.campaign-body p {
  font-size: 13px;
  color: #222;
}

/* ---------- Creators ---------- */
.creator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .creator-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.creator-card {
  position: relative;
  overflow: hidden;
  background: #222;
  cursor: pointer;
  height: 220px;
}

@media (min-width: 768px) {
  .creator-card {
    height: 330px;
  }
}

.creator-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.creator-hover {
  position: absolute;
  inset: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.share-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.share-btn img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.creator-card:hover .creator-hover {
  opacity: 1;
  visibility: visible;
}

.creator-hover h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #111;
}

.creator-hover p {
  font-size: 14px;
  color: #111;
  margin-bottom: 8px;
}

.creator-hover .followers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin-bottom: 24px;
}

.creator-hover .followers img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.view-btn {
  display: inline-block;
  background: #f5b400;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  transition: background 0.2s;
}

.view-btn:hover {
  background: #111;
}

/* ---------- Help ---------- */
.help-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 36px;
}

@media (min-width: 600px) {
  .help-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .help-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.help-card {
  text-align: center;
  color: var(--white);
  padding: 28px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: border-color 0.3s, transform 0.3s;
}

.help-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}

.help-card img {
  margin: 0 auto 16px;
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.help-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.help-card p {
  font-size: 13px;
  color: #cfcfcf;
}

/* ---------- Blueprint ---------- */
.blueprint-wrap {
  position: relative;
  max-width: 720px;
  margin: 40px auto 0;
  padding-left: 10px;
}

.blueprint-line {
  position: absolute;
  left: 36px;
  top: 22px;
  bottom: 80px;
  width: 1px;
  background: #444;
}

.blueprint-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 22px;
}

.blueprint-icon {
  width: 54px;
  height: 54px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  flex-shrink: 0;
}

.blueprint-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.blueprint-card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.15);
  padding: 16px;
}

.blueprint-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.blueprint-top strong {
  margin-left: auto;
  font-size: 13px;
  color: var(--gold-dark);
}

.tag {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border: 1px dashed;
  background: var(--white);
}

.tag.red {
  color: var(--red);
  border-color: var(--red);
}

.tag.yellow {
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}

.tag.green {
  color: var(--green);
  border-color: var(--green);
}

.blueprint-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.blueprint-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.trajectory-box {
  background: var(--white);
  border: 1px solid #cfcfcf;
  padding: 18px;
  max-width: 720px;
  margin: 30px auto;
}

.trajectory-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.trajectory-head h4 {
  font-size: 14px;
  font-weight: 700;
  color: #777;
}

.trajectory-head span {
  font-size: 13px;
  color: var(--gold-dark);
  font-weight: 700;
}

.progress-track {
  width: 100%;
  height: 13px;
  background: #d9d9d9;
  border-radius: 20px;
  overflow: hidden;
}

.progress-fill {
  width: 49%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(90deg, #ff2b1f 0%, #f5b400 45%, #1d8b27 100%);
  animation: growBar 1.6s ease forwards;
}

@keyframes growBar {
  from {
    width: 0;
  }
  to {
    width: 85%;
  }
}

.month-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}

.month-labels span {
  font-size: 12px;
  color: #777;
}

.testimonial-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 900px;
  margin: 30px auto;
}

@media (min-width: 768px) {
  .testimonial-row {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial-card {
  min-height: 150px;
  border: 1px solid var(--gold-dark);
  padding: 40px 28px 28px;
  position: relative;
  text-align: center;
}

.quote-mark {
  position: absolute;
  top: 10px;
  left: 16px;
  line-height: 1;
}

.quote-mark img {
  width: 28px;
  height: auto;
}

.testimonial-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #dcdcdc;
  margin-bottom: 20px;
}

.testimonial-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.testimonial-card span {
  font-size: 13px;
  color: #cfcfcf;
}

.case-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 20px auto 0;
}

@media (min-width: 768px) {
  .case-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.case-card {
  display: block;
  min-height: 130px;
  border: 1px solid var(--gold-dark);
  padding: 16px;
  transition: background 0.3s;
}

.case-card span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 18px;
}

.case-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.case-card p {
  font-size: 13px;
  color: #dcdcdc;
}

.case-card:hover {
  background: var(--gold-dark);
}

.case-card:hover span,
.case-card:hover h3,
.case-card:hover p {
  color: #000;
}

/* ---------- Form ---------- */
.form-section {
  background: #f9f9f9;
}

.form-wrap {
  max-width: 640px;
  text-align: center;
}

.lead-form {
  margin-top: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

@media (min-width: 600px) {
  .form-row:not(.full) {
    grid-template-columns: 1fr 1fr;
  }
}

.form-row.full {
  text-align: left;
}

.form-row.full label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--muted);
}

.lead-form input,
.lead-form select {
  width: 100%;
  background: var(--white);
  color: #5b5b5b;
  padding: 15px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--gold);
}

.lead-form input.is-invalid,
.lead-form select.is-invalid {
  border-color: var(--red);
}

.btn-submit {
  cursor: pointer;
  color: #000;
  font-weight: 700;
  background: var(--gold);
  padding: 12px 48px;
  border: 0;
  margin-top: 10px;
  font-size: 15px;
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s;
}

.btn-submit:hover {
  background: #000;
  color: #fff;
}

.form-success {
  margin-top: 16px;
  color: var(--green);
  font-weight: 600;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #111;
  color: #888;
  padding: 28px 0;
  border-top: 1px solid #1c1c1c;
}

.footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white) !important;
}

.footer-logo img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.footer-logo .logo-name {
  color: var(--white);
  font-size: 14px;
}

.footer-logo .logo-sub {
  color: #c9a8ff;
  font-size: 11px;
}

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

.footer-nav a {
  font-size: 13px;
  color: #888;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--gold);
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  width: 32px;
  height: 32px;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #888;
  transition: border-color 0.2s, color 0.2s;
}

.socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.copyright {
  font-size: 12px;
  color: #555;
  margin: 0;
}

@media (max-width: 767px) {
  .site-footer {
    padding: 24px 0;
  }

  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .copyright {
    width: 100%;
    padding-top: 4px;
  }
}

/* ---------- Enquire panel ---------- */
.enquire-fab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right center;
  background: var(--gold);
  color: #000;
  border: 0;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 12px 22px;
  cursor: pointer;
  z-index: 900;
  box-shadow: -2px 2px 12px rgba(0, 0, 0, 0.2);
}

.enquire-fab:hover {
  background: var(--gold-dark);
}

.enquire-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1100;
}

.enquire-backdrop[hidden] {
  display: none;
}

.enquire-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 380px);
  height: 100%;
  background: var(--white);
  z-index: 1200;
  padding: 48px 28px 28px;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
  visibility: hidden;
  pointer-events: none;
}

.enquire-panel.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.enquire-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: 0;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  line-height: 1;
}

.enquire-panel h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--charcoal);
}

.enquire-panel fieldset {
  border: 0;
  margin-bottom: 22px;
}

.enquire-panel legend {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.enquire-panel label {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
  cursor: pointer;
}

.enquire-panel input[type="radio"] {
  margin-right: 8px;
  accent-color: var(--gold-dark);
}

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  border: 0;
  padding: 12px 28px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
}

.btn-gold:hover {
  background: #000;
  color: #fff;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---------- Misc ---------- */
@media (max-width: 599px) {
  .hero-sub {
    flex-direction: column;
  }
  .arrow-shape {
    width: 56px;
  }
  .enquire-fab {
    font-size: 11px;
    padding: 10px 16px;
  }
}
