:root {
  --black: #07080a;
  --ink: #101114;
  --panel: #15171c;
  --panel-2: #1d2027;
  --white: #f8f8f6;
  --muted: #a8abb2;
  --line: rgba(255, 255, 255, 0.12);
  --red: #ff1616;
  --red-dark: #b90909;
  --silver: #d7d8d5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 8%, rgba(255, 22, 22, 0.16), transparent 28%),
    linear-gradient(180deg, #050608 0%, #101114 45%, #08090b 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

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

.cursor-glow {
  position: fixed;
  inset: auto;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 22, 22, 0.12);
  filter: blur(70px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
  padding: 12px clamp(18px, 5vw, 70px);
  background: rgba(7, 8, 10, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 64px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(255, 255, 255, 0.08);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

nav a:hover {
  color: var(--white);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-color: rgba(255, 22, 22, 0.55);
  box-shadow: 0 18px 50px rgba(255, 22, 22, 0.2);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(42px, 7vw, 96px) clamp(18px, 5vw, 70px) 56px;
  isolation: isolate;
}

.beam-stage {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  opacity: 0.9;
}

.lighthouse {
  position: absolute;
  right: 14%;
  top: 11%;
  width: 54px;
  height: 178px;
  background: linear-gradient(90deg, #dc0707, var(--red));
  clip-path: polygon(28% 0, 72% 0, 82% 100%, 18% 100%);
  filter: drop-shadow(0 0 28px rgba(255, 22, 22, 0.35));
}

.lighthouse::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 11px;
  width: 32px;
  height: 28px;
  background: var(--red);
  border-radius: 3px 3px 0 0;
}

.lighthouse span {
  position: absolute;
  inset: 36px 20px auto;
  display: block;
  height: 12px;
  background: var(--white);
  box-shadow: 0 36px 0 var(--white), 0 72px 0 var(--white);
  border-radius: 2px;
}

.beam {
  position: absolute;
  right: 13%;
  top: 11%;
  width: 62vw;
  height: 220px;
  background: linear-gradient(90deg, rgba(255, 22, 22, 0.34), transparent 72%);
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 60%);
  transform-origin: left center;
  animation: scan 7s ease-in-out infinite alternate;
}

.focus-corner {
  display: none;
}

.top-left {
  top: 22%;
  left: 9%;
  border-top: 4px solid;
  border-left: 4px solid;
}

.top-right {
  top: 22%;
  right: 9%;
  border-top: 4px solid;
  border-right: 4px solid;
}

.bottom-left {
  bottom: 15%;
  left: 9%;
  border-bottom: 4px solid;
  border-left: 4px solid;
}

.bottom-right {
  right: 9%;
  bottom: 15%;
  border-right: 4px solid;
  border-bottom: 4px solid;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 930px;
  margin-bottom: 24px;
  font-size: clamp(47px, 7vw, 104px);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  max-width: 880px;
  margin-bottom: 0;
  font-size: clamp(32px, 4.6vw, 68px);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  color: var(--silver);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.trust-row span {
  padding: 8px 11px;
  color: var(--silver);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.hero-visual img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.46);
}

.visual-card {
  position: absolute;
  width: min(300px, 80%);
  padding: 17px;
  background: rgba(7, 8, 10, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.hero-diagnosis {
  right: 0;
  bottom: 88px;
  width: min(390px, 90%);
}

.hero-diagnosis a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-card span,
.plan-kicker {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.visual-card strong {
  display: block;
  margin-top: 7px;
  line-height: 1.2;
}

.card-one {
  left: -20px;
  bottom: 86px;
}

.card-two {
  right: -18px;
  top: 54px;
}

.section {
  padding: clamp(70px, 10vw, 138px) clamp(18px, 5vw, 70px);
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.pain {
  background: var(--white);
  color: var(--ink);
}

.pain .eyebrow,
.plans .eyebrow,
.markets .eyebrow,
.proof .eyebrow,
.contact .eyebrow {
  color: var(--red);
}

.pain-grid,
.plan-grid,
.market-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pain-grid article,
.plan,
.market-strip article {
  min-height: 230px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pain-grid article {
  background: #f2f2ef;
  border-color: #d8d8d3;
}

.pain-grid span {
  color: var(--red);
  font-weight: 900;
}

.pain-grid p,
.plan p,
.plan li,
.market-strip span,
.contact p {
  color: var(--muted);
  line-height: 1.55;
}

.pain-grid p {
  color: #555961;
}

.plans {
  background: linear-gradient(180deg, #0b0c0f, #13151b);
}

.plan {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
}

.plan-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  min-height: 42px;
  padding: 0 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 7px;
  font-weight: 900;
}

.plan.featured {
  border-color: rgba(255, 22, 22, 0.55);
  box-shadow: inset 0 0 0 1px rgba(255, 22, 22, 0.22), 0 30px 80px rgba(255, 22, 22, 0.11);
}

.plan ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  margin: 24px 0 0;
}

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

.market-strip {
  grid-template-columns: repeat(5, minmax(210px, 1fr));
  overflow-x: auto;
  padding-bottom: 8px;
}

.market-strip article {
  min-height: 180px;
}

.market-strip strong,
.market-strip span {
  display: block;
}

.market-strip span {
  margin-top: 14px;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: var(--white);
  color: var(--ink);
}

.flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.flow span {
  display: grid;
  place-items: center;
  min-height: 86px;
  padding: 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  font-weight: 900;
}

.flow span:nth-child(even) {
  background: var(--red);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.method-grid article {
  min-height: 190px;
  padding: 24px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.method-grid article:nth-child(2) {
  background: var(--red);
}

.method-grid span {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  font-weight: 900;
}

.method-grid strong {
  display: block;
  font-size: 22px;
}

.method-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.62fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(70px, 10vw, 138px) clamp(18px, 5vw, 70px);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 22, 22, 0.2), transparent 28%),
    #0a0b0d;
}

.contact-copy {
  display: grid;
  align-content: start;
  gap: 22px;
}

.contact-lead {
  max-width: 760px;
  font-size: clamp(18px, 1.7vw, 22px);
}

.no-social {
  display: inline-flex;
  width: fit-content;
  max-width: 720px;
  padding: 18px 20px;
  color: var(--white) !important;
  background: rgba(255, 22, 22, 0.13);
  border: 1px solid rgba(255, 22, 22, 0.35);
  border-radius: 8px;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 900;
  line-height: 1.25 !important;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
}

label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d4d5d1;
  border-radius: 7px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: #fbfbfa;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: #5d626b;
  font-size: 14px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 5vw, 70px);
  color: var(--muted);
  background: #050608;
  border-top: 1px solid var(--line);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 64px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 8px;
  overflow: hidden;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

@keyframes scan {
  from {
    transform: rotate(-10deg);
    opacity: 0.48;
  }
  to {
    transform: rotate(9deg);
    opacity: 0.95;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .hero,
  .proof,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual,
  .hero-visual img {
    height: auto;
    min-height: 390px;
  }

  .pain-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 580px) {
  .site-header {
    gap: 10px;
  }

  .brand {
    width: 118px;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 11px;
    font-size: 13px;
  }

  h1 {
    font-size: 43px;
  }

  .hero {
    padding-top: 34px;
  }

  .card-one,
  .card-two {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .hero-visual img {
    height: 360px;
    min-height: 360px;
  }

  .focus-corner,
  .lighthouse {
    opacity: 0.55;
  }

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

  .market-strip {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Premium concept pass */
h1 em,
h2 em {
  color: var(--red);
  font-style: normal;
}

.hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(330px, 0.58fr);
  padding-bottom: 64px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.97) 0%, rgba(5, 6, 8, 0.82) 39%, rgba(5, 6, 8, 0.22) 74%, rgba(5, 6, 8, 0.86) 100%),
    linear-gradient(180deg, rgba(5, 6, 8, 0.1), rgba(5, 6, 8, 0.86)),
    url("assets/cinematic-hero.png") center / cover no-repeat;
  transform: scale(1.04);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero-visual {
  display: grid;
  place-items: center;
  min-height: 520px;
}

.hero-visual img {
  display: none;
}

.play-reel {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  color: var(--white);
  background: rgba(7, 8, 10, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  backdrop-filter: blur(14px);
  cursor: pointer;
  animation: pulse 2.4s ease-in-out infinite;
}

.play-reel span {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid var(--white);
}

.hero-visual > p {
  margin-top: 16px;
  color: var(--silver);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visual-card {
  right: 0;
  bottom: 42px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 24px clamp(18px, 5vw, 70px);
  background: #101114;
  border-block: 1px solid var(--line);
}

.stats article {
  padding: 10px 28px;
  border-right: 1px solid var(--line);
}

.stats article:last-child {
  border-right: 0;
}

.stats span {
  display: block;
  color: var(--white);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
}

.stats p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.split-head {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr);
  align-items: end;
}

.split-head > p {
  color: #555961;
  line-height: 1.6;
}

.markets.light {
  background: var(--white);
  color: var(--ink);
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.sector {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 430px;
  padding: 26px;
  overflow: hidden;
  color: var(--white);
  border-radius: 8px;
  background: #111;
  border: 1px solid #d8d8d3;
  isolation: isolate;
}

.sector::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/corporate-ai-shoot.png") center / cover no-repeat;
  transform: scale(1.08);
  transition: transform 500ms ease;
}

.sector::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5, 6, 8, 0.08), rgba(5, 6, 8, 0.92));
}

.sector:hover::before {
  transform: scale(1.13);
}

.sector.realestate::before {
  background-position: 62% center;
}

.sector.hotels::before {
  background-image: url("assets/cinematic-hero.png");
  background-position: right center;
}

.sector.events::before {
  background-position: 35% center;
}

.sector p {
  color: var(--silver);
  line-height: 1.45;
}

.sector a {
  margin-top: 18px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-slider {
  display: grid;
  grid-template-columns: repeat(5, minmax(210px, 1fr));
  gap: 18px;
  overflow-x: auto;
}

.service-slider .plan {
  min-height: 280px;
}

.service-slider .plan span {
  display: block;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.16);
  font-size: 48px;
  font-weight: 900;
}

.difference {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 38px clamp(18px, 5vw, 70px);
  color: var(--ink);
  background: var(--white);
}

.difference article {
  min-height: 120px;
  padding: 22px 28px;
  border-right: 1px solid #d8d8d3;
}

.difference article:last-child {
  border-right: 0;
}

.difference strong,
.difference span {
  display: block;
}

.difference strong {
  font-size: 20px;
}

.difference span {
  margin-top: 10px;
  color: #555961;
  line-height: 1.45;
}

.audit-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: clamp(34px, 5vw, 70px) clamp(18px, 5vw, 70px);
  padding: clamp(28px, 5vw, 52px);
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.92), rgba(5, 6, 8, 0.72)),
    url("assets/cinematic-hero.png") center / cover no-repeat;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.audit-band p:last-child {
  color: var(--silver);
  line-height: 1.5;
}

.compact {
  padding-top: clamp(40px, 6vw, 80px);
}

.ai-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: min(370px, calc(100vw - 28px));
}

.chat-toggle {
  display: grid;
  gap: 3px;
  margin-left: auto;
  padding: 14px 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border: 0;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(255, 22, 22, 0.34);
  cursor: pointer;
}

.chat-toggle span {
  font-size: 12px;
  font-weight: 900;
}

.chat-toggle strong {
  font-size: 14px;
}

.chat-panel {
  margin-top: 10px;
  overflow: hidden;
  background: rgba(8, 9, 11, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(18px);
}

.chat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.chat-close {
  color: var(--muted);
  background: none;
  border: 0;
  font-size: 18px;
  cursor: pointer;
}

.chat-messages {
  display: grid;
  gap: 10px;
  max-height: 300px;
  overflow-y: auto;
  padding: 14px;
}

.chat-messages p {
  max-width: 88%;
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  line-height: 1.35;
  font-size: 14px;
}

.chat-messages .bot {
  color: var(--white);
  background: var(--panel);
}

.chat-messages .user {
  justify-self: end;
  color: var(--white);
  background: var(--red);
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
}

.chat-form input {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
}

.chat-form button {
  padding: 0 13px;
  color: var(--white);
  background: var(--red);
  border: 0;
  border-radius: 7px;
  font-weight: 900;
}

@keyframes heroDrift {
  from { transform: scale(1.04) translateX(0); }
  to { transform: scale(1.08) translateX(-1.5%); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 22, 22, 0.28); }
  50% { box-shadow: 0 0 0 18px rgba(255, 22, 22, 0); }
}

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

  .hero-visual {
    min-height: 260px;
  }

  .stats,
  .sector-grid,
  .difference,
  .method-grid {
    grid-template-columns: 1fr;
  }

  .stats article,
  .difference article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 580px) {
  .cursor-glow {
    display: none;
  }

  .hero-bg {
    transform: none;
    animation: none;
  }

  .visual-card {
    position: static;
    width: 100%;
    margin-top: 18px;
  }

  .service-slider {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }

  .sector {
    min-height: 340px;
  }

  .ai-chat {
    right: 14px;
    bottom: 14px;
  }
}

/* Comment fixes pass */
.brand,
.footer-logo {
  gap: 12px;
  justify-content: flex-start;
  width: auto;
  min-width: 224px;
  height: 64px;
  padding: 9px 15px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(255, 22, 22, 0.12), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.brand-symbol {
  position: relative;
  flex: 0 0 auto;
  display: inline-block;
  width: 28px;
  height: 42px;
  background: var(--red);
  clip-path: polygon(32% 0, 68% 0, 82% 100%, 18% 100%);
  filter: drop-shadow(0 0 14px rgba(255, 22, 22, 0.55));
}

.brand-symbol::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 7px;
  width: 14px;
  height: 11px;
  background: var(--red);
  border-radius: 2px 2px 0 0;
}

.brand-symbol::after {
  content: "";
  position: absolute;
  left: -34px;
  bottom: 3px;
  width: 96px;
  height: 16px;
  border-bottom: 3px solid var(--red);
  border-radius: 50%;
}

.brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1;
  text-transform: uppercase;
}

.brand-copy strong {
  color: var(--white);
  font-size: 19px;
  letter-spacing: 0.08em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.42em;
}

nav {
  gap: 4px;
  padding: 6px;
  color: var(--silver);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

nav a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

nav a:hover {
  color: var(--white);
  background: rgba(255, 22, 22, 0.95);
  transform: translateY(-1px);
}

.video-authority {
  width: min(480px, 100%);
  padding: 14px;
  background: rgba(7, 8, 10, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(16px);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.45), 0 0 70px rgba(255, 22, 22, 0.12);
}

.video-frame {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(7, 8, 10, 0.05), rgba(7, 8, 10, 0.75)),
    url("assets/cinematic-hero.png") center / cover no-repeat;
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, 0.18) 42%, transparent 56%);
  animation: videoSweep 4.8s ease-in-out infinite;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-frame.is-playing .video-scan,
.video-frame.is-playing .video-play,
.video-frame.is-playing .video-caption,
.video-frame.is-playing::before {
  display: none;
}

.video-scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 8px);
  opacity: 0.28;
  mix-blend-mode: screen;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 45%;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  background: rgba(255, 22, 22, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 50px rgba(255, 22, 22, 0.32);
}

.video-play span {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--white);
}

.video-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.video-caption span,
.video-authority > a {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-caption strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  line-height: 1.1;
}

.video-timeline {
  display: grid;
  gap: 8px;
  margin: 14px 0;
}

.video-timeline span {
  display: block;
  width: var(--w);
  height: 5px;
  background: linear-gradient(90deg, var(--red), rgba(255, 255, 255, 0.5));
  border-radius: 999px;
  animation: timelinePulse 2.6s ease-in-out infinite alternate;
}

.video-authority > a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.whatsapp-float {
  text-decoration: none;
}

@keyframes videoSweep {
  from { transform: translateX(-75%); }
  to { transform: translateX(75%); }
}

@keyframes timelinePulse {
  from { opacity: 0.46; transform: scaleX(0.78); transform-origin: left; }
  to { opacity: 1; transform: scaleX(1); transform-origin: left; }
}

@media (max-width: 580px) {
  .brand,
  .footer-logo {
    min-width: 148px;
    height: 48px;
    padding: 6px 9px;
  }

  .brand-symbol {
    width: 20px;
    height: 30px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy small {
    font-size: 8px;
    letter-spacing: 0.24em;
  }

  .video-frame {
    min-height: 220px;
  }
}

/* Final logo placement */
.brand,
.footer-logo {
  justify-content: center;
  width: 270px;
  min-width: 270px;
  height: 86px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.brand img,
.footer-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}

@media (max-width: 580px) {
  .brand,
  .footer-logo {
    width: 170px;
    min-width: 170px;
    height: 58px;
    padding: 0;
  }

  .brand img,
  .footer-logo img {
    transform: none;
  }
}
