:root {
  --black: #030303;
  --dark: #08090c;
  --panel: #101114;
  --panel-soft: #15161b;
  --red: #ef1c25;
  --red-dark: #b80d14;
  --white: #ffffff;
  --text: #f3f3f3;
  --muted: #a9a9a9;
  --line: rgba(255,255,255,.08);
  --glow: rgba(239,28,37,.28);
  --max: 1120px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

/* ===== HEADER ===== */

.topbar {
  height: 88px;
  background: rgba(3,3,3,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 72px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  width: auto;
  height: auto;
  overflow: visible;
}

.logo img {
  max-width: none;
  max-height: none;
}

.image-logo img {
  width: 280px !important;
  height: auto !important;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .image-logo img {
    width: 180px !important;
  }
}

@media (max-width: 480px) {
  .image-logo img {
    width: 160px !important;
  }
}

.pricing-topbar {
  background: rgba(244,241,237,.92);
  border-bottom: 1px solid rgba(0,0,0,.08);
  color: #111;
  padding: 18px 40px;
}

@media (max-width: 768px) {
  .pricing-topbar {
    padding: 16px 20px;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .8px;
}

.nav a {
  color: #d7d7d7;
  position: relative;
  padding: 12px 0;
  transition: .25s ease;
}

.nav a:not(.book-btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: .25s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--white);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.book-btn {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff !important;
  padding: 14px 22px !important;
  border-radius: 10px;
  box-shadow: 0 0 24px rgba(239,28,37,.28);
}

.book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(239,28,37,.45);
}

/* ===== HAMBURGER ===== */

.menu-toggle {
  display: none;
  width: 34px;
  height: 26px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 99px;
  transition: .3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* ===== HERO ===== */

.hero {
  min-height: 680px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 45%, rgba(239,28,37,.22), transparent 34%),
    linear-gradient(90deg, #000 0%, #050505 45%, #140305 100%);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .16;
}

.hero::after {
  content: "ALBUXAI";
  position: absolute;
  right: -50px;
  bottom: -30px;
  font-size: 150px;
  font-weight: 900;
  color: rgba(255,255,255,.025);
  letter-spacing: -6px;
}

.hero-inner {
  width: min(1120px, calc(100% - 72px));
  margin: 0 auto;
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.hero-left h1 {
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.04;
  letter-spacing: -2px;
  font-weight: 900;
  max-width: 720px;
  margin-bottom: 24px;
}

.hero-left h1 span {
  color: var(--red);
}

.hero-sub {
  color: #c8c8c8;
  font-size: 18px;
  max-width: 610px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.main-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  border: none;
  padding: 15px 26px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .4px;
  cursor: pointer;
  box-shadow: 0 0 28px rgba(239,28,37,.25);
  transition: .25s ease;
}

.main-btn:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 38px rgba(239,28,37,.45);
}

.ghost-btn {
  display: inline-flex;
  padding: 14px 24px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  color: #e4e4e4;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .4px;
  transition: .25s ease;
}

.ghost-btn:hover {
  border-color: rgba(239,28,37,.75);
  color: #fff;
  box-shadow: 0 0 24px rgba(239,28,37,.18);
}

.hero-proof {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-proof span {
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.035);
  padding: 8px 12px;
  border-radius: 999px;
  color: #bdbdbd;
  font-size: 12px;
  font-weight: 700;
}

/* ===== HERO VISUAL ===== */

.hero-right {
  height: 460px;
  position: relative;
}

.red-ring {
  position: absolute;
  width: 380px;
  height: 380px;
  border: 2px solid var(--red);
  border-radius: 50%;
  right: 42px;
  top: 30px;
  box-shadow:
    0 0 40px rgba(239,28,37,.72),
    0 0 88px rgba(239,28,37,.25),
    inset 0 0 26px rgba(239,28,37,.28);
  animation: pulseRing 4s ease-in-out infinite;
}

.enterprise-panel {
  position: absolute;
  right: 80px;
  top: 78px;
  width: 430px;
  min-height: 280px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    rgba(12,12,14,.92);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  box-shadow:
    0 28px 70px rgba(0,0,0,.55),
    0 0 42px rgba(239,28,37,.18);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.panel-top {
  height: 42px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
}

.panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  opacity: .78;
}

.panel-main {
  padding: 22px;
}

.panel-label {
  color: #aaa;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.metric-row div {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 16px;
}

.metric-row strong {
  display: block;
  color: #ddd;
  font-size: 13px;
  margin-bottom: 8px;
}

.metric-row p {
  color: var(--red);
  font-size: 24px;
  font-weight: 900;
}

.system-line {
  height: 10px;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), rgba(255,255,255,.15));
  margin-bottom: 10px;
}

.system-line.short {
  width: 66%;
  opacity: .75;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-top: 18px;
}

.system-grid div {
  height: 54px;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}

.phone {
  position: absolute;
  right: 12px;
  bottom: 28px;
  width: 116px;
  height: 220px;
  background: linear-gradient(150deg, #181818, #040404);
  border: 3px solid #272727;
  border-radius: 24px;
  padding: 10px;
  box-shadow:
    0 24px 44px rgba(0,0,0,.55),
    0 0 26px rgba(239,28,37,.22);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 50% 30%, rgba(239,28,37,.16), transparent 42%),
    #070707;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

.phone-logo {
  width: 44px;
  opacity: .92;
}

.phone-text {
  color: #aaa;
  font-size: 10px;
  font-weight: 700;
}

.floating {
  animation: float 5s ease-in-out infinite;
}

.floating2 {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}

@keyframes pulseRing {
  0% { transform: scale(1); opacity: .72; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); opacity: .72; }
}

/* ===== SECTIONS ===== */

.section {
  padding: 76px 0;
  background: #030303;
}

.corporate-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(239,28,37,.10), transparent 32%),
    #030303;
}

.red-label {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -1px;
  font-weight: 900;
  max-width: 760px;
}

.title-line {
  width: 54px;
  height: 2px;
  background: var(--red);
  margin: 14px 0 28px;
}

/* ===== CARDS ===== */

.services-grid,
.corporate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.015)),
    var(--panel);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 26px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: .28s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(239,28,37,.55);
  box-shadow: 0 0 35px rgba(239,28,37,.13);
}

.service-card.highlight {
  border-color: rgba(239,28,37,.65);
  box-shadow: 0 0 28px rgba(239,28,37,.16);
}

.service-card h3 {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.service-card p {
  color: #bdbdbd;
  font-size: 14px;
  line-height: 1.5;
}

.service-card .btn {
  margin-top: 22px;
  width: fit-content;
  padding: 12px 18px;
  font-size: 12px;
}

/* ===== TRUST STRIP ===== */

.trust-strip {
  background:
    linear-gradient(180deg, #030303, #070707);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-grid div {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 28px;
}

.trust-grid h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.trust-grid p {
  color: #aaa;
  font-size: 14px;
}

/* ===== PROCESS ===== */

.process-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(239,28,37,.10), transparent 34%),
    #030303;
}

.process-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.timeline {
  margin-top: 26px;
}

.step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.step span {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(239,28,37,.12);
  border: 1px solid rgba(239,28,37,.5);
  color: var(--red);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.step h4 {
  font-size: 15px;
  margin-bottom: 5px;
}

.step p {
  color: #aaa;
  font-size: 14px;
}

.cta-box {
  background:
    radial-gradient(circle at 70% 35%, rgba(239,28,37,.18), transparent 42%),
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.015)),
    var(--panel);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 46px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: inset 0 0 70px rgba(239,28,37,.05);
}

.cta-box h2 {
  margin-bottom: 16px;
}

.cta-box p:not(.red-label) {
  color: #c7c7c7;
  margin-bottom: 28px;
}

/* ===== INNER PAGES ===== */

.inner-hero {
  min-height: 300px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 75% 45%, rgba(239,28,37,.22), transparent 35%),
    linear-gradient(90deg, #000, #08090c);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .16;
}

.inner-hero .container {
  position: relative;
  z-index: 2;
}

.inner-hero h1 {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1.5px;
}

.inner-hero p:not(.red-label) {
  color: #c1c1c1;
  max-width: 640px;
  font-size: 17px;
}

/* ===== PRICING / ABOUT / CONTACT SUPPORT ===== */

.pricing-grid,
.solution-grid,
.industries-grid,
.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.price-card,
.solution-card,
.industry-card,
.about-card,
.contact-form,
.contact-info {
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.015)),
    var(--panel);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 26px;
  transition: .25s ease;
}

.price-card:hover,
.solution-card:hover,
.industry-card:hover,
.about-card:hover {
  transform: translateY(-5px);
  border-color: rgba(239,28,37,.55);
  box-shadow: 0 0 35px rgba(239,28,37,.13);
}

.price-card.featured,
.about-card.highlight {
  border-color: rgba(239,28,37,.65);
  box-shadow: 0 0 28px rgba(239,28,37,.16);
}

.price {
  font-size: 34px;
  font-weight: 900;
  margin: 12px 0 4px;
}

.price-card span {
  color: #aaa;
  font-size: 14px;
}

.price-card ul {
  list-style: none;
  margin: 22px 0;
}

.price-card li,
.about-card li {
  color: #cfcfcf;
  font-size: 14px;
  margin-bottom: 8px;
}

.solution-card h3,
.industry-card h3,
.about-card h3 {
  margin-bottom: 10px;
}

.solution-card p,
.industry-card p,
.about-card p {
  color: #bdbdbd;
  font-size: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 13px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
  background: #090909;
  color: #fff;
  outline: none;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-info ul {
  margin: 18px 0;
  padding-left: 18px;
}

.contact-info li {
  color: #cfcfcf;
  margin-bottom: 10px;
}

.contact-box {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 16px;
  margin-top: 16px;
}

.contact-box a {
  color: #fff;
}

/* ===== FOOTER ===== */

.footer {
  background: #020202;
  border-top: 1px solid var(--line);
  padding: 34px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 28px;
  align-items: center;
}

.footer img {
  width: 116px;
  margin-bottom: 10px;
}

.footer p {
  color: #999;
  font-size: 12px;
}

.footer-center {
  text-align: center;
  font-size: 14px !important;
  color: #bbb !important;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  color: var(--red);
  font-size: 20px;
}

/* ===== REVEAL ANIMATION SAFE DEFAULT ===== */

.reveal-item {
  opacity: 1;
  transform: none;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1100px) {
  .floating-laptop {
    display: block;
    width: 150px;
    height: 95px;
    opacity: .55;
    z-index: 1;
  }

  /* TOP */
  .laptop-left-top {
    left: -40px;
    top: 90px;
  }

  .laptop-right-top {
    right: -45px;
    top: 120px;
  }

  /* BOTTOM */
  .laptop-left-mid {
    left: -40px;
    bottom: 250px;
    display: block;
  }

  .laptop-right-mid {
    right: -40px;
    bottom: 220px;
    display: block;
  }
}

@media (max-width: 520px) {
  .floating-laptop {
    width: 120px;
    height: 76px;
    opacity: .40;
  }

  /* TOP */
  .laptop-left-top {
    left: -50px;
    top: 100px;
  }

  .laptop-right-top {
    right: -55px;
    top: 145px;
  }

  /* BOTTOM */
  .laptop-left-mid {
    left: -55px;
    bottom: 300px;
  }

  .laptop-right-mid {
    right: -55px;
    bottom: 260px;
  }
}

@media (max-width: 520px) {
  .floating-laptop {
    width: 120px;
    height: 76px;
    opacity: .38;
  }

  .laptop-left-top {
    left: -50px;
    top: 100px;
  }

  .laptop-right-top {
    right: -55px;
    top: 145px;
  }
}

  .menu-toggle {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    right: 24px;
    top: 88px;
    width: 260px;
    background: rgba(5,5,5,.98);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    box-shadow: 0 25px 70px rgba(0,0,0,.65);
  }

  .nav.active,
  .nav.show {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 13px 14px;
    border-radius: 10px;
  }

  .nav a::after {
    display: none;
  }

  .nav a:hover,
  .nav a.active {
    background: rgba(239,28,37,.13);
  }

  .book-btn {
    text-align: center;
    margin-top: 6px;
  }

  .hero-inner,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding: 56px 0;
  }

  .hero-right {
    height: 390px;
  }

  .enterprise-panel {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(430px, 92vw);
  }

  .red-ring {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .phone {
    right: 8%;
  }

  .services-grid,
  .corporate-grid,
  .pricing-grid,
  .solution-grid,
  .industries-grid,
  .about-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer,
  .footer-center,
  .footer-social {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 650px) {
  .container,
  .hero-inner {
    width: min(100% - 32px, var(--max));
  }

  .hero {
    min-height: auto;
  }

  .hero-left h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-proof {
    display: none;
  }

  .hero-right {
    height: 340px;
  }

  .red-ring {
    width: 280px;
    height: 280px;
    top: 36px;
  }

  .enterprise-panel {
    width: 300px;
    top: 70px;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .system-grid {
    display: none;
  }

  .phone {
    width: 92px;
    height: 178px;
    right: 4px;
    bottom: 26px;
  }

  .services-grid,
  .corporate-grid,
  .pricing-grid,
  .solution-grid,
  .industries-grid,
  .about-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .service-card,
  .price-card,
  .solution-card,
  .industry-card,
  .about-card {
    padding: 16px;
    min-height: auto;
    border-radius: 14px;
  }

  .service-card.highlight {
    grid-column: span 2;
  }

  .service-card h3,
  .price-card h3,
  .solution-card h3,
  .industry-card h3,
  .about-card h3 {
    font-size: 14px;
  }

  .service-card p,
  .price-card li,
  .solution-card p,
  .industry-card p,
  .about-card p {
    font-size: 12px;
    line-height: 1.35;
  }

  .section {
    padding: 50px 0;
  }

  .cta-box {
    padding: 28px;
  }
}

/* ===== LIGHT CORPORATE PRICING PAGE ===== */

.pricing-light-page {
  background: #f4f1ed;
  color: #111;
}

.pricing-light-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 15%, rgba(0,0,0,.04), transparent 22%),
    radial-gradient(circle at 80% 30%, rgba(0,0,0,.035), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,.55), rgba(210,205,198,.25));
  z-index: -2;
}

.pricing-light-page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image:
    repeating-linear-gradient(0deg, rgba(0,0,0,.07) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(0,0,0,.04) 0 1px, transparent 1px 7px);
  mix-blend-mode: multiply;
  z-index: -1;
}

.pricing-topbar {
  background: rgba(244,241,237,.92);
  border-bottom: 1px solid rgba(0,0,0,.08);
  color: #111;
}

.pricing-topbar .nav a {
  color: #111;
}

.pricing-topbar .nav a:hover,
.pricing-topbar .nav a.active {
  color: #d11119;
}

.pricing-topbar .menu-toggle span {
  background: #111;
}

.pricing-logo-text {
  width: auto;
  height: auto;
  overflow: visible;
  font-weight: 900;
  letter-spacing: 8px;
  font-size: 28px;
  color: #111;
}

.pricing-logo-text span span {
  color: #d11119;
}

/* HERO */

.pricing-hero-light {
  position: relative;
  min-height: 560px;
  padding: 80px 0 40px;
  overflow: hidden;
}

.pricing-hero-content {
  text-align: center;
  position: relative;
  z-index: 5;
  padding-top: 40px;
}

.pricing-red-label {
  color: #d11119;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.pricing-hero-content h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: .95;
  text-transform: uppercase;
  font-weight: 900;
  max-width: 820px;
  margin: 0 auto 24px;
  letter-spacing: -2px;
}

.pricing-hero-content h1 span {
  color: #d11119;
}

.pricing-hero-content p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 17px;
  color: #333;
}

/* FLOATING LAPTOPS */

.floating-laptop {
  position: absolute;
  width: 360px;
  height: 230px;
  background: linear-gradient(180deg, #222, #080808);
  border-radius: 10px 10px 16px 16px;
  padding: 10px;
  box-shadow: 0 24px 45px rgba(0,0,0,.25);
  z-index: 2;
}

.floating-laptop::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -17px;
  height: 18px;
  background: linear-gradient(180deg, #c9c9c9, #8e8e8e);
  border-radius: 0 0 30px 30px;
}

.mock-screen {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  padding: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mock-screen p {
  font-size: 18px;
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
}

.mock-screen span {
  color: #d11119;
}

.mock-screen button {
  width: fit-content;
  margin-top: 16px;
  border: none;
  background: #d11119;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  padding: 8px 12px;
  border-radius: 3px;
}

.dark-screen {
  background:
    linear-gradient(90deg, rgba(0,0,0,.8), rgba(0,0,0,.25)),
    radial-gradient(circle at 80% 30%, rgba(209,17,25,.35), transparent 35%),
    #0b0b0b;
  color: #fff;
}

.beauty-screen {
  background: linear-gradient(90deg, #fff, #eaded8);
  color: #111;
}

.light-screen {
  background: linear-gradient(90deg, #fff, #dfe3e8);
  color: #111;
}

.auto-screen {
  background:
    linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.35)),
    radial-gradient(circle at 85% 60%, rgba(255,255,255,.22), transparent 30%),
    #090909;
  color: #fff;
}

.laptop-left-top {
  left: -40px;
  top: 140px;
  transform: rotate(-8deg);
}

.laptop-right-top {
  right: -40px;
  top: 140px;
  transform: rotate(8deg);
}

.laptop-left-mid {
  left: 40px;
  bottom: 140px;
  transform: rotate(6deg);
}

.laptop-right-mid {
  right: 40px;
  bottom: 140px;
  transform: rotate(-6deg);
}

/* SECTIONS */

.pricing-light-section {
  padding: 42px 0 34px;
  position: relative;
}

.pricing-section-title {
  text-align: center;
  margin-bottom: 34px;
}

.pricing-section-title p {
  color: #d11119;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.pricing-section-title h2 {
  color: #111;
  text-transform: uppercase;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  margin: 0 auto;
  max-width: none;
}

.pricing-section-title span {
  display: block;
  width: 54px;
  height: 3px;
  background: #d11119;
  margin: 16px auto 0;
}

/* CARD GRIDS */

.pricing-light-grid,
.monthly-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.pricing-light-card,
.monthly-card,
.addon-card,
.automation-card-light,
.email-addon-bar {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 10px;
  box-shadow: 0 18px 35px rgba(0,0,0,.10);
}

.pricing-light-card {
  min-height: 360px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pricing-light-card.featured-light {
  box-shadow: 0 20px 45px rgba(209,17,25,.18);
}

.pricing-icon {
  color: #d11119;
  font-size: 42px;
  line-height: 1;
  margin-bottom: 16px;
}

.pricing-light-card h3,
.monthly-card h3 {
  color: #111;
  font-size: 21px;
  margin-bottom: 6px;
}

.pricing-price,
.monthly-price {
  color: #d11119;
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 18px;
}

.pricing-light-card ul,
.monthly-card ul {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}

.pricing-light-card li,
.monthly-card li {
  color: #111;
  font-size: 14px;
  margin-bottom: 10px;
}

.pricing-light-card li::before,
.monthly-card li::before,
.automation-list li::before {
  content: "✓";
  color: #d11119;
  font-weight: 900;
  margin-right: 10px;
}

.pricing-outline-btn,
.pricing-solid-btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
  border-radius: 5px;
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .4px;
  transition: .25s ease;
}

.pricing-outline-btn {
  border: 1px solid #d11119;
  color: #d11119;
  background: transparent;
}

.pricing-solid-btn {
  border: 1px solid #d11119;
  color: #fff;
  background: linear-gradient(135deg, #e0131d, #b80d14);
  box-shadow: 0 10px 25px rgba(209,17,25,.20);
}

.pricing-outline-btn:hover,
.pricing-solid-btn:hover {
  transform: translateY(-2px);
}

/* EMAIL BAR */

.email-addon-bar {
  max-width: 720px;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
}

.email-icon {
  width: 42px;
  height: 42px;
  background: #d11119;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.email-addon-bar strong {
  color: #111;
  font-size: 16px;
}

.email-addon-bar p {
  color: #333;
  font-size: 14px;
}

/* MONTHLY */

.monthly-card {
  border-top: 5px solid #d11119;
  padding: 26px 22px;
  min-height: 260px;
}

.monthly-card p {
  color: #111;
  font-weight: 700;
  margin-bottom: 18px;
}

.managed-area {
  padding-top: 34px;
}

/* ADDONS + AUTOMATION */

.two-column-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.small-title {
  margin-bottom: 22px;
}

.small-title h2 {
  font-size: clamp(25px, 3vw, 36px);
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.addon-card {
  padding: 20px 14px;
  text-align: center;
  min-height: 130px;
}

.addon-card div {
  color: #d11119;
  font-size: 32px;
  margin-bottom: 10px;
}

.addon-card h4 {
  color: #111;
  font-size: 13px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.addon-card p {
  color: #d11119;
  font-size: 14px;
  font-weight: 900;
}

.automation-card-light {
  padding: 34px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: center;
}

.robot-icon {
  width: 96px;
  height: 96px;
  border: 2px solid #d11119;
  color: #d11119;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 46px;
}

.automation-card-light h3 {
  color: #111;
  font-size: 26px;
}

.automation-price {
  color: #d11119;
  font-size: 32px;
  font-weight: 900;
}

.automation-price span {
  font-size: 15px;
}

.automation-month {
  color: #111;
  font-weight: 700;
  margin-bottom: 18px;
}

.automation-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 22px;
}

.automation-list ul {
  list-style: none;
  padding: 0;
}

.automation-list li {
  color: #111;
  font-size: 14px;
  margin-bottom: 9px;
}

.wide-btn {
  width: 100%;
  display: block;
}

/* FOOTER */

.pricing-footer-light {
  background: #080808;
  color: #fff;
  padding: 30px 0;
  margin-top: 20px;
}

.pricing-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
  align-items: center;
}

.footer-brand span {
  color: #fff;
}

.footer-brand p,
.pricing-footer-grid p {
  color: #c9c9c9;
  font-size: 13px;
}

.footer-circles {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.footer-circles span {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .floating-laptop {
    display: block;
    width: 150px;
    height: 95px;
    opacity: .55;
    z-index: 1;
  }

  .laptop-left-top {
    left: -40px;
    top: 90px;
  }

  .laptop-right-top {
    right: -45px;
    top: 120px;
  }

  .laptop-left-mid,
  .laptop-right-mid {
    display: none;
  }
}

  .pricing-hero-light {
    min-height: 420px;
  }

  .pricing-light-grid,
  .monthly-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-column-pricing {
    grid-template-columns: 1fr;
  }

  .pricing-topbar .nav.active,
  .pricing-topbar .nav.show {
    background: rgba(244,241,237,.98);
  }

@media (max-width: 680px) {
  .pricing-logo-text {
    font-size: 22px;
    letter-spacing: 5px;
  }

  .pricing-hero-content h1 {
    font-size: 38px;
  }

  .pricing-hero-light {
    padding-top: 50px;
    min-height: 350px;
  }

  .pricing-light-grid,
  .monthly-grid {
    grid-template-columns: 1fr;
  }

  .addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .automation-card-light {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .robot-icon {
    margin: 0 auto;
  }

  .automation-list {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .pricing-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-circles {
    justify-content: center;
  }
}

@media (max-width: 1100px) {
  .pricing-hero-light {
    padding-bottom: 180px;
  }

  .laptop-left-mid {
    display: block !important;
    left: -45px !important;
    bottom: 35px !important;
  }

  .laptop-right-mid {
    display: block !important;
    right: -45px !important;
    bottom: 55px !important;
  }
}

@media (max-width: 520px) {
  .pricing-hero-light {
    padding-bottom: 160px;
  }

  .laptop-left-mid {
    left: -55px !important;
    bottom: 30px !important;
  }

  .laptop-right-mid {
    right: -55px !important;
    bottom: 50px !important;
  }
}

/* BOTTOM PAGE FLOATING LAPTOPS */

.final-pricing-area {
  position: relative;
  overflow: hidden;
  padding-bottom: 220px;
}

.bottom-floating-laptop {
  position: absolute;
  width: 230px;
  height: 145px;
  background: linear-gradient(180deg, #222, #080808);
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 20px 45px rgba(0,0,0,.25);
}

.bottom-floating-laptop::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -16px;
  height: 16px;
  background: linear-gradient(180deg,#cfcfcf,#999);
  border-radius: 0 0 20px 20px;
}

.bottom-left-laptop {
  left: -40px;
  bottom: 40px;
  transform: rotate(-8deg);
}

.bottom-right-laptop {
  right: -40px;
  bottom: 80px;
  transform: rotate(8deg);
}

/* MOBILE */
@media (max-width: 768px) {
  .bottom-floating-laptop {
    width: 140px;
    height: 90px;
    opacity: .65;
  }

  .bottom-left-laptop {
    left: -45px;
    bottom: 20px;
  }

  .bottom-right-laptop {
    right: -45px;
    bottom: 50px;
  }
}

.image-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.image-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 100;
}

.image-logo img {
  width: 260px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Tablet */
@media (max-width: 992px) {
.image-logo img {
  width: 330px !important;
  height: auto !important;
  object-fit: contain;
  display: block;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .image-logo img {
    width: 170px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .image-logo img {
    width: 150px;
  }
}

/* ===== FINAL DESKTOP LAPTOP POSITION OVERRIDE ===== */

@media (min-width: 1101px) {
  .pricing-hero-light {
    min-height: 720px !important;
  }

  .pricing-hero-light .floating-laptop {
    width: 430px !important;
    height: 275px !important;
  }

  .pricing-hero-light .laptop-left-top {
    left: -140px !important;
    top: 130px !important;
    transform: rotate(8deg) !important;
  }

  .pricing-hero-light .laptop-right-top {
    right: -140px !important;
    top: 130px !important;
    transform: rotate(-8deg) !important;
  }

  .pricing-hero-light .laptop-left-mid {
    left: -110px !important;
    bottom: 40px !important;
    transform: rotate(-8deg) !important;
  }

  .pricing-hero-light .laptop-right-mid {
    right: -110px !important;
    bottom: 40px !important;
    transform: rotate(8deg) !important;
  }
}

/* ===== BIGGER MOBILE LAPTOPS ===== */

@media (max-width: 1100px) {
  .pricing-hero-light .floating-laptop {
    width: 220px !important;
    height: 140px !important;
  }
}

@media (max-width: 520px) {
  .pricing-hero-light .floating-laptop {
    width: 200px !important;
    height: 130px !important;
  }
}

/* ===== BOTTOM LAPTOP SIZE FIX ===== */

.bottom-floating-laptop {
  width: 430px !important;
  height: 275px !important;
}

.bottom-floating-laptop .mock-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bottom-floating-laptop .mock-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 768px) {
  .bottom-floating-laptop {
    width: 220px !important;
    height: 140px !important;
  }
}

@media (max-width: 520px) {
  .bottom-floating-laptop {
    width: 200px !important;
    height: 130px !important;
  }
}

/* ===== BOTTOM SCREEN FIT FIX ===== */

.bottom-floating-laptop .mock-screen {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
}

.bottom-floating-laptop .mock-screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* ===== FINAL BOTTOM SCREEN FILL FIX ===== */

.bottom-floating-laptop .mock-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  padding: 0 !important;
}

.bottom-floating-laptop .mock-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center center;
  display: block;
}

/* ===== DESKTOP BOTTOM LAPTOP CLARITY FIX ===== */

@media (min-width: 1101px) {
  .bottom-floating-laptop {
    width: 520px !important;
    height: 330px !important;
  }

  .bottom-floating-laptop .mock-screen {
    padding: 0 !important;
    overflow: hidden !important;
    background: #111 !important;
  }

  .bottom-floating-laptop .mock-screen img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center top !important;
  }

  .bottom-left-laptop {
    left: -240px !important;
    bottom: 10px !important;
  }

  .bottom-right-laptop {
    right: -240px !important;
    bottom: 40px !important;
  }
}

/* ===== FINAL CRISP BOTTOM LAPTOP FIX ===== */

@media (min-width: 1101px) {
  .bottom-floating-laptop {
    width: 430px !important;
    height: 275px !important;
  }

  .bottom-floating-laptop .mock-screen img {
    object-fit: contain !important;
    object-position: center center !important;
    transform: none !important;
  }
}

/* ===== FINAL CRISP LAPTOP IMAGE FIX ALL SCREENS ===== */

.bottom-floating-laptop .mock-screen {
  padding: 0 !important;
  overflow: hidden !important;
  background: #111 !important;
}

.bottom-floating-laptop .mock-screen img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  image-rendering: auto !important;
}

/* Desktop */
@media (min-width: 1101px) {
  .bottom-floating-laptop {
    width: 430px !important;
    height: 275px !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .bottom-floating-laptop {
    width: 220px !important;
    height: 140px !important;
  }
}

@media (max-width: 520px) {
  .bottom-floating-laptop {
    width: 200px !important;
    height: 128px !important;
  }
}

/* FIX DESKTOP HERO CUTOFF */

@media (min-width: 1101px) {
  .pricing-hero-light {
    overflow: visible !important;
  }

  .pricing-hero-light .laptop-left-top {
    left: -70px !important;
  }

  .pricing-hero-light .laptop-right-top {
    right: -70px !important;
  }

  .pricing-hero-light .laptop-left-mid {
    left: -50px !important;
  }

  .pricing-hero-light .laptop-right-mid {
    right: -50px !important;
  }
}

/* FIX MOBILE IMAGE DIMMING */

.mock-screen,
.mock-screen img {
  opacity: 1 !important;
  filter: brightness(1.15) contrast(1.05) !important;
}

.dark-screen,
.light-screen,
.beauty-screen {
  background: transparent !important;
}

/* FIX BOTTOM LAPTOP CUTOFF ON DESKTOP */
@media (min-width: 1101px) {
  .final-pricing-area {
    overflow: visible !important;
    padding-bottom: 330px !important;
  }

  .final-pricing-area .container {
    overflow: visible !important;
  }

  .bottom-floating-laptop {
    z-index: 1 !important;
  }

  .bottom-left-laptop {
    left: -80px !important;
    bottom: 40px !important;
  }

  .bottom-right-laptop {
    right: -80px !important;
    bottom: 70px !important;
  }
}

/* PUSH BOTTOM LAPTOPS BEHIND TEXT */

.final-pricing-area {
  position: relative;
}

.final-pricing-area .pricing-section-title,
.final-pricing-area .automation-card-light,
.final-pricing-area h2,
.final-pricing-area p,
.final-pricing-area .pricing-solid-btn {
  position: relative;
  z-index: 5;
}

.bottom-floating-laptop {
  z-index: 1 !important;
  opacity: 0.95;
}

/* push slightly farther back visually */
.bottom-left-laptop {
  bottom: 10px !important;
}

.bottom-right-laptop {
  bottom: 30px !important;
}

/* MOBILE GLASS ACTION BUTTONS */
.mobile-action-bar {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 78px;
  }

  .mobile-action-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 14px;
    z-index: 9999;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;

    /* remove background behind buttons */
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .mobile-action-bar a {
    text-align: center;
    padding: 11px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .7px;

    color: #111;
    background: rgba(255,255,255,.34);
    border: 1px solid rgba(255,255,255,.65);

    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);

    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.75),
      inset 0 -10px 18px rgba(255,255,255,.12),
      0 10px 26px rgba(0,0,0,.18);

    transition: .25s ease;
  }

  .mobile-action-bar a:first-child {
    color: #fff;
    background: rgba(10,10,10,.62);
    border-color: rgba(255,255,255,.28);
  }

  .mobile-action-bar a:nth-child(2) {
    color: #111;
    background: rgba(255,255,255,.42);
  }

  .mobile-action-bar a:last-child {
    color: #fff;
    background: rgba(210, 17, 25, .72);
    border-color: rgba(255,255,255,.35);
  }

  .mobile-action-bar a:active {
    transform: scale(.96);
  }
}