html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}



/* Base reset – ultra light */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #111111;
  line-height: 1.6;
}

button,
a,
[role="button"] {
  cursor: pointer;
}


/* ================================
   AXISBRAND – FAST HEADER (FIXED)
================================ */

/* HEADER WRAPPER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

/* FULL-WIDTH RED STRIP */


/* HEADER INNER (CONTENT WIDTH CONTROL) */
.header-inner {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  background: #ffffff;
  position: relative;
}

/* LOGO BLOCK */
.logo-block {
  background: #e32619;
  padding: 18px 28px;
  display: flex;
  align-items: center;

  /* extend red to left screen edge */
  margin-left: calc(-1 * (100vw - 100%) / 2);
  padding-left: calc((100vw - 100%) / 2 + 28px);
}


.logo-block img {
  width: 160px;
  height: 55px;
  display: block;
}

/* DESKTOP NAV */

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 36px;
  margin: 0;
  padding-left: 40px;
}

.nav-link {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  position: relative;
}

@media (min-width: 901px) {
  .nav-link:hover::after,
  .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #111;
  }
}
.main-nav {
  margin: 0 auto;
}


/* DROPDOWN */
.has-dropdown {
  position: relative;
}

.has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

/* ================================
   DESKTOP DROPDOWN – PREMIUM
================================ */

@media (min-width: 901px) {
    
    .mobile-menu {
     display: none;
    }


  .has-dropdown > .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    
    min-width: 260px;
    max-width: 320px;

    background: #ffffff;
    border-radius: 10px;
    padding: 10px 0;

    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.06);

    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;

    z-index: 2000;
  }

  .has-dropdown:hover > .dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  .dropdown li {
    list-style: none;
  }

  .dropdown li a {
    display: block;
    padding: 12px 20px;

    font-size: 14px;
    font-weight: 500;
    color: #111;
    text-decoration: none;

    transition: background 0.2s ease, color 0.2s ease;
  }

  .dropdown li a:hover {
    background: #f5f5f5;
    color: #e32619;
  }
}


/* CTA */
.header-cta {
  background: #e32619;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 24px;
  margin-left: auto;
  margin-right: 24px;
  white-space: nowrap;
}

/* HAMBURGER */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  margin-right: 16px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  margin: 5px 0;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
    

  .main-nav,
  .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .header-inner {
    padding: 0;
  }

  .logo-block {
    margin-left: 0;
    padding: 14px 16px;
  }

  /* MOBILE DROPDOWN MENU */
  .mobile-menu {
    display: block; /* required for animation */
    position: absolute;
    top: 100%;
    right: 0;

    width: 75vw;
    max-width: 320px;

    background: #e32619;
    color: #ffffff;

    border-radius: 0 0 0 14px;
    box-shadow: -12px 20px 40px rgba(0,0,0,0.25);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);

    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0s linear 0.25s;

    z-index: 2000;
  }

  .mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);

    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
  }

  /* MENU LIST */
  .mobile-menu ul {
    list-style: none;
    padding: 5px;
    margin: 0;
  }

  .mobile-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.25);
  }

  .mobile-menu li:last-child {
    border-bottom: none;
    margin-bottom: 4px;
  }

  .mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.3px;
  }

  /* CLOSE BUTTON */
  .mobile-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
  }

/* ============================
   MOBILE CONTACT – CTA BUTTONS
============================ */

.mobile-contact {
  padding: 5px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 16px;
  border-radius: 12px;

  background: linear-gradient(180deg, #ffffff, #f3f3f3);
  color: #e32619;

  font-size: 15px;
  font-weight: 600;
  text-decoration: none;

  box-shadow:
    0 6px 0 rgba(0,0,0,0.15),
    0 10px 20px rgba(0,0,0,0.25);

  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* Tap / Press effect */
.mobile-contact a:active {
  transform: translateY(3px);
  box-shadow:
    0 3px 0 rgba(0,0,0,0.15),
    0 6px 12px rgba(0,0,0,0.25);
}

/* ICONS */
.mobile-contact a::before {
  content: "";
  width: 18px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
}

/* Phone icon */
    .mobile-contact a[href^="tel"]::before {
  content: "📞";
  background: none;
}

.mobile-contact a[href^="mailto"]::before {
  content: "✉️";
  background: none;
}


/* ============================
   MOBILE Menu Dropdowns
============================ */

    .mobile-menu .has-dropdown > .dropdown {
    display: none;
    padding-left: 12px;
    margin-top: 6px;
  }

  .mobile-menu .has-dropdown > a {
    position: relative;
    padding-right: 28px;
  }

  /* Arrow indicator */
  .mobile-menu .has-dropdown > a::after {
    content: "▾";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    opacity: 0.8;
  }

  /* When parent is active */
  .mobile-menu .has-dropdown.active > .dropdown {
    display: block;
  }

.mobile-menu .dropdown a {
  font-size: 14px;
  padding: 10px 0;
  opacity: 0.9;
}

/* ✅ CLOSE HEADER MOBILE MEDIA QUERY HERE */
}





/* ============================
   FOOTER – NEW GEN DESIGN
============================ */

.site-footer {
  background: radial-gradient(circle at top, #1a1a1a, #000);
  color: #ccc;
  font-size: 14px;
}

/* MAIN FOOTER GRID */
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px 40px;

  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 40px;
}

/* BRAND COLUMN */
.footer-logo {
  width: 160px;
  margin-bottom: 14px;
}

.footer-address {
  font-size: 13px;
  margin-bottom: 10px;
  color: #aaa;
}

.footer-contact {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-top: 6px;
  font-weight: 500;
}

.footer-contact:hover {
  color: #e32619;
}

/* LINKS */
.footer-links h4,
.footer-form h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 14px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #e32619;
}

/* MINI FORM */
.footer-lead-form input,
.footer-lead-form textarea {
  width: 100%;
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  color: #fff;
  margin-bottom: 10px;
}

.footer-lead-form textarea {
  height: 70px;
  resize: none;
}

.footer-lead-form button {
  width: 100%;
  background: linear-gradient(135deg, #e32619, #ff3b2f);
  border: none;
  color: #fff;
  padding: 11px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.footer-lead-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(227,38,25,0.35);
}

/* HONEYPOT */
.hp-field {
  display: none !important;
}

/* FOOTER BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 16px 20px;
  font-size: 13px;
  color: #777;
}

.footer-logo img {
  width: 160px;
  max-width: 100%;
  height: auto;
  display: block;
}

.footer-success-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);

  background: #ffffff;
  color: #111;
  padding: 22px 28px;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);

  font-size: 16px;
  text-align: center;
  z-index: 9999;

  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
}

.footer-success-toast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Honeypot */
.footer-hp {
  display: none !important;
}


/* ============================
   MOBILE
============================ */

@media (max-width: 900px) {

  .footer-main {
    display: grid;              /* ✅ REQUIRED */
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-contact {
    display: flex;              /* ✅ REQUIRED */
    justify-content: center;
  }

  .footer-logo img {
    width: 140px;
    margin: 0 auto;
  }
  
  /* Reorder footer columns on mobile */
  .footer-form {
    order: 1;
  }

  .footer-brand {
    order: 2;
  }

  .footer-links {
    order: 3;
  }
}


/* ============================
   pop-up form
============================ */

.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.lead-popup.active {
  display: block;
}

.lead-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.lead-popup-box {
  position: relative;
  max-width: 420px;
  margin: 8vh auto;
  background: #ffffff;
  padding: 32px;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  animation: popupIn 0.35s ease;
}

@keyframes popupIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.lead-popup-box h3 {
  margin-bottom: 6px;
  font-size: 22px;
}

.lead-popup-box p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.lead-popup-box input,
.lead-popup-box textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.lead-popup-box textarea {
  resize: none;
  height: 100px;
}

.lead-popup-box button {
  width: 100%;
  background: #e32619;
  color: #fff;
  border: none;
  padding: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
}

.lead-popup-box button:hover {
  background: #c71f14;
}

.form-status {
  margin-top: 10px;
  font-size: 14px;
}
.hp-field {
  display: none !important;
}
.popup-header {
  background: #e32619;
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -32px -32px 20px -32px;
}

.popup-header span {
  font-size: 16px;
  font-weight: 600;
}

.lead-close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #ffffff;
  font-size: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lead-close:hover {
  background: rgba(255,255,255,0.3);
}

.popup-subtext {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.success-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);

  background: #ffffff;
  color: #111;
  padding: 22px 28px;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);

  font-size: 16px;
  text-align: center;
  z-index: 10000;

  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
}

.success-toast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* =====================
   HERO SECTION – AXISBRAND
===================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

/* BACKGROUND */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

/* OPTIONAL VIDEO */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.80; /* 👈 increased slightly */
  z-index: 1;
  filter: saturate(0.9) contrast(1.05);
}


/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 30% 20%, rgba(227,38,25,0.35), transparent 60%),
    linear-gradient(
      180deg,
      rgba(0,0,0,0.75),
      rgba(0,0,0,0.9)
    );
}


/* CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  padding: 120px 20px 80px;
  margin: 0 auto;
  color: #fff;
}

/* EYEBROW */
.hero-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* TITLE */
.hero-title {
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-title span {
  color: #e32619;
}

/* SUBTITLE */
.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 500;
  margin-bottom: 26px;
  color: rgba(255,255,255,0.9);
}

/* SUPPORT TEXT */
.hero-text {
  max-width: 620px;
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
}

/* ACTIONS */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* BUTTON */
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.hero-btn.primary {
  background: linear-gradient(135deg, #e32619, #ff3b2f);
  color: #fff;
  box-shadow: 0 12px 30px rgba(227,38,25,0.45);
}

.hero-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(227,38,25,0.6);
}

.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* =====================
   MOBILE OPTIMIZATION
===================== */

@media (max-width: 900px) {

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    padding: 100px 18px 70px;
    text-align: left;
  }

  .hero-text {
    font-size: 15px;
  }
  .hero-title {
    font-size: 50px;           /* locks visual weight */
    line-height: 1.12;         /* fixes perceived thinness */
    font-weight: 800;          /* unchanged */
  }
  
  .hero-video {
    opacity: 0.8;
  }
}


/* =====================
   SECTION 2 – CHAOS vs REALITY (VISUAL)
===================== */

.chaos-visual {
  position: relative;
  padding: 140px 20px;
  background: linear-gradient(180deg, #0a0a0a, #000);
  overflow: hidden;
  color: #fff;
}

/* ===== CHAOS LAYERS ===== */
.chaos-layer {
  position: absolute;
  inset: -20%;
  pointer-events: none;
}

.chaos-layer-1 {
  background:
    radial-gradient(circle at 20% 30%, rgba(227,38,25,0.25), transparent 40%);
}

.chaos-layer-2 {
  background:
    radial-gradient(circle at 80% 60%, rgba(227,38,25,0.18), transparent 45%);
  mix-blend-mode: screen;
}

.chaos-layer-3 {
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 4px
  );
  opacity: 0.4;
}

/* ===== CONTENT WRAP ===== */
.chaos-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== HEAD ===== */
.chaos-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.chaos-title {
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  margin: 20px 0;
}

.chaos-title span {
  color: #e32619;
}

.chaos-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-bottom: 80px;
}

/* ===== CHAOS GRID ===== */
.chaos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  align-items: stretch;
  margin-top: 60px;
}

/* ===== CHAOS CARDS ===== */
.chaos-card {
  position: relative;
  padding: 36px 34px;
  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.06),
      rgba(0,0,0,0.45)
    );

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    0 40px 90px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.06);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}


.chaos-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.chaos-card p {
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}

/* numbering */
.chaos-tag {
  position: absolute;
  top: -14px;
  right: 18px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
}

/* controlled misalignment */
.tilt-left {
  transform: translateX(-20px);
}

.tilt-right {
  transform: translateX(20px);
}

/* ===== REALITY SNAP ===== */
.chaos-reality {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 50px;
}

.chaos-reality p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
}

.chaos-reality h4 {
  font-size: 26px;
  font-weight: 800;
  margin-top: 10px;
  color: #fff;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {

  .chaos-visual {
    padding: 100px 18px;
  }

  .chaos-sub {
    margin-bottom: 60px;
  }

  .tilt-left,
  .tilt-right {
    transform: none;
  }

  .chaos-card {
    padding: 28px 24px;
  }

  .chaos-reality h4 {
    font-size: 22px;
  }
  .chaos-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .chaos-card {
    transform: none !important;
  }
}
/* =========================
   REALITY CHECK SECTION
========================= */

.reality-section {
  position: relative;
  background: #ffffff;
  overflow: hidden;
  padding: 120px 20px 140px;
}

/* scribbles */
.scribble {
  position: absolute;
  opacity: 0.25;
}

.scribble-1 {
  top: 40px;
  left: 5%;
}

.scribble-2 {
  bottom: 80px;
  right: 8%;
}

.reality-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* eyebrow */
.reality-eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #e32619;
  display: inline-block;
  margin-bottom: 20px;
}

/* title */
.reality-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: #111;
  margin-bottom: 20px;
}

/* glitch word */
.glitch {
  position: relative;
  color: #e32619;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.6;
}

.glitch::before {
  transform: translate(2px, -2px);
  color: #000;
}

.glitch::after {
  transform: translate(-2px, 2px);
  color: #e32619;
}

/* subtitle */
.reality-subtitle {
  font-size: 18px;
  color: #333;
  max-width: 620px;
  margin-bottom: 70px;
}

/* GRID */
.reality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 80px;
}

/* CARDS */
.reality-card {
  position: relative;
  padding: 40px 34px;
  border-radius: 22px;
  background: #f9f9f9;
  border: 1px solid #eee;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.reality-card:hover {
  transform: translateY(-12px);
}

/* neon variant */
.reality-card.neon {
  border: 2px solid #e32619;
  box-shadow:
    0 0 0 rgba(227,38,25,0.0),
    0 0 30px rgba(227,38,25,0.25);
}

/* numbers */
.card-no {
  position: absolute;
  top: -18px;
  right: 20px;
  font-size: 60px;
  font-weight: 800;
  color: rgba(227,38,25,0.08);
}

/* card text */
.reality-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #111;
}

.reality-card p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #444;
}

/* FINAL LINE */
.reality-line {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #111;
}

.reality-line span {
  margin: 0 6px;
}

.reality-line .highlight {
  color: #e32619;
}

/* CONTROL SHIFT BLOCK */

.control-shift {
  max-width: 820px;
  margin: 70px auto 0;
  padding: 46px 32px;
  text-align: center;
  border-top: 3px solid #e32619;
  background: #ffffff;
}

.control-line {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.control-line.muted {
  color: #555;
}

.control-line.strong {
  font-weight: 700;
  color: #111;
}

.control-brand {
  margin-top: 22px;
  font-size: 22px;
  font-weight: 700;
  color: #111;
}

.control-brand span {
  color: #e32619;
}


/* MOBILE */
@media (max-width: 900px) {
  .reality-grid {
    grid-template-columns: 1fr;
  }

  .reality-title {
    font-size: 42px;
  }
}

/* ================================
   AXISBRAND INTELLIGENCE ENGINE
================================ */

.axis-engine {
  position: relative;
  background: #000;
  color: #fff;
  padding: 140px 20px;
  overflow: hidden;
}

/* BACKGROUND */
.engine-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.grid {
  position: absolute;
  inset: 0;
  z-index: 0;

  background:
    /* subtle red ambient depth */
    radial-gradient(circle at center, rgba(227,38,25,0.06), transparent 60%),

    /* horizontal grid */
    linear-gradient(
      rgba(255,255,255,0.08) 1px,
      transparent 1px
    ),

    /* vertical grid */
    linear-gradient(
      90deg,
      rgba(255,255,255,0.08) 1px,
      transparent 1px
    );

  background-size:
    100% 100%,
    44px 44px,
    44px 44px;

  opacity: 0.35;
  pointer-events: none;

  animation: gridShift 80s linear infinite;
}




.neon-pulse {
  position: absolute;
  z-index: 1; /* 👈 IMPORTANT */
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(227,38,25,0.28), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 4s infinite ease-in-out;
}



@keyframes pulse {
  0%,100% { transform: translate(-50%, -50%) scale(0.9); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
}

.axis-engine::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 20% 30%, rgba(227,38,25,0.08), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(227,38,25,0.07), transparent 50%);
  pointer-events: none;
}

@keyframes gridShift {
  0% { background-position: 0 0, 0 0, 0 0; }
  100% { background-position: 0 0, 44px 44px, 44px 44px; }
}



/* CONTAINER */
.engine-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.engine-header {
  text-align: center;
  margin-bottom: 100px;
}

.engine-eyebrow {
  color: #e32619;
  font-size: 12px;
  letter-spacing: 2px;
}

.engine-header h2 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.05;
}

.engine-header span {
  color: #e32619;
}

/* STAGE */
.engine-stage {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
}

/* NODES */
.engine-node {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 30px;
  backdrop-filter: blur(8px);
}

.engine-node h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

.engine-node p {
  font-size: 14.5px;
  color: #ccc;
  line-height: 1.6;
}

/* CORE */
.engine-core {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #000;
  border: 2px solid #e32619;
  box-shadow:
    0 0 40px rgba(227,38,25,0.6),
    inset 0 0 30px rgba(227,38,25,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.core-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(227,38,25,0.6);
  animation: rotate 12s linear infinite;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.core-text {
  text-align: center;
  font-weight: 800;
  font-size: 14px;
}

.core-text span {
  color: #e32619;
  font-size: 12px;
}

/* FOOTER */
.engine-footer {
  text-align: center;
}

.engine-footer p {
  color: #bbb;
  margin-bottom: 30px;
}

.engine-footer h3 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
}

.engine-footer span {
  color: #e32619;
}

/* MOBILE */
@media (max-width: 900px) {
  .engine-stage {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .engine-core {
    margin: 0 auto;
  }
}

@keyframes engineGlow {
  0% {
    box-shadow: 0 0 30px rgba(227,38,25,0.6),
                inset 0 0 20px rgba(227,38,25,0.4);
  }
  50% {
    box-shadow: 0 0 60px rgba(227,38,25,0.8),
                inset 0 0 40px rgba(227,38,25,0.6);
  }
  100% {
    box-shadow: 0 0 30px rgba(227,38,25,0.6),
                inset 0 0 20px rgba(227,38,25,0.4);
  }
}

.engine-core {
  animation: engineGlow 2.4s ease-in-out infinite;
}

/* ================================
   AXISBRAND – EXPERTISE (WHITE)
================================ */

.axis-expertise-white {
  background: #ffffff;
  color: #111;
  padding: 140px 20px;
  position: relative;
  overflow: hidden;
}

/* Soft ambient accents */
.axis-expertise-white {
  position: relative;
  overflow: hidden;
}

.axis-expertise-white::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(
    600px circle at var(--x, 50%) var(--y, 50%),
    rgba(227,38,25,0.06),
    transparent 60%
  );
  pointer-events: none;
  transition: opacity 0.2s ease;
}


/* Wrapper */
.expertise-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header */
.expertise-header {
  text-align: center;
  margin-bottom: 90px;
}

.expertise-eyebrow {
  color: #e32619;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
}

.expertise-header h2 {
  font-size: clamp(34px, 6vw, 60px);
  font-weight: 800;
  margin: 18px 0;
}

.expertise-header span {
  color: #e32619;
}

.expertise-header p {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
  font-size: 16px;
}

/* Canvas */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-bottom: 110px;
}

/* Tiles */
.expertise-card {
  background: #fff;
  border-radius: 20px;
  padding: 34px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  position: relative;
}

.expertise-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(227,38,25,0.15),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.expertise-card:hover::after {
  opacity: 1;
}

.expertise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(227,38,25,0.18);
}

/* Accent tile */
.expertise-card .highlight {
  border: 2px solid rgba(227,38,25,0.6);
}

.expertise-card h4 {
  font-size: 18px;
  margin-bottom: 14px;
}

.expertise-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Footer line */
.expertise-footer {
  text-align: center;
}

.expertise-footer h3 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
}

.expertise-footer span {
  color: #e32619;
}

/* Mobile */
@media (max-width: 900px) {
  .axis-expertise-white {
    padding: 100px 18px;
  }

  .expertise-canvas {
    margin-bottom: 70px;
  }
}
/* ================================
   BACKGROUND GRID & ENERGY
================================ */

.expertise-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Soft grid lines */
.expertise-grid-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.35;
}

/* Diagonal motion layer */
.expertise-diagonal {
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    120deg,
    transparent 45%,
    rgba(227,38,25,0.06) 50%,
    transparent 55%
  );
  animation: diagonalMove 18s linear infinite;
}

/* Motion animation */
@keyframes diagonalMove {
  from {
    transform: translateX(-20%);
  }
  to {
    transform: translateX(20%);
  }
}

/* ================================
   AXISBRAND – GROWTH DIAGNOSTIC
================================ */

.axis-diagnostic {
  position: relative;
  background: #000;
  color: #fff;
  padding: 140px 20px;
  overflow: hidden;
}

/* Background glow + grid */
.diagnostic-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(227,38,25,0.18), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(227,38,25,0.15), transparent 50%),
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 48px 48px, 48px 48px;
  animation: gridMove 80s linear infinite;
  z-index: 0;
}

@keyframes gridMove {
  to {
    background-position: 0 0, 0 0, 48px 48px, 48px 48px;
  }
}

.diagnostic-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.diagnostic-header {
  text-align: center;
  margin-bottom: 80px;
}

.diagnostic-eyebrow {
  color: #e32619;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
}

.diagnostic-header h2 {
  font-size: clamp(34px, 6vw, 60px);
  font-weight: 800;
  margin: 16px 0;
}

.diagnostic-header span {
  color: #e32619;
}

.diagnostic-header p {
  color: #ccc;
  font-size: 16px;
}

/* Options grid */
.diagnostic-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.diagnostic-option {
  cursor: pointer;
}

.diagnostic-option input {
  display: none;
}

.diagnostic-option span {
  display: block;
  padding: 22px 26px;
  border-radius: 14px;
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  transition: all 0.3s ease;
}

.diagnostic-option input:checked + span {
  background: rgba(227,38,25,0.2);
  border-color: #e32619;
  box-shadow: 0 0 25px rgba(227,38,25,0.4);
}

.diagnostic-option span:hover {
  transform: translateY(-4px);
}

/* CTA */
.diagnostic-btn {
  display: block;
  margin: 0 auto 40px;
  background: #e32619;
  color: #fff;
  padding: 16px 44px;
  border-radius: 40px;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

/* Form */
.diagnostic-form-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.diagnostic-form-wrap.active {
  max-height: 600px;
}

#diagnosticForm {
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 40px;
  border-radius: 18px;
}

#diagnosticForm input,
#diagnosticForm textarea {
  width: 100%;
  margin-bottom: 18px;
  padding: 14px;
  border-radius: 10px;
  border: none;
}

#diagnosticForm button {
  background: #e32619;
  color: #fff;
  padding: 14px;
  border-radius: 30px;
  border: none;
  width: 100%;
}

.diagnostic-hint {
  margin-top: 20px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
}

.diagnostic-hint.show {
  opacity: 1;
  transform: translateY(0);
}

.diagnostic-hint.error {
  color: #e32619;
}
.selected-summary {
  margin-bottom: 30px;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(227,38,25,0.08);
  border: 1px solid rgba(227,38,25,0.35);
}

.selected-summary p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 600;
}

.selected-summary ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.selected-summary li {
  list-style: none;
  padding: 6px 12px;
  border-radius: 20px;
  background: #e32619;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}


/* Mobile */
@media (max-width: 900px) {
  .diagnostic-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =====================
   Success Modal
===================== */

.diagnostic-success {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 9999;
}

.diagnostic-success.active {
  opacity: 1;
  pointer-events: auto;
}

.success-box {
  background: #0b0b0b;
  border: 1px solid rgba(227,38,25,0.4);
  border-radius: 22px;
  padding: 40px 30px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 40px 120px rgba(227,38,25,0.35);
  animation: popIn 0.45s ease;
}

/* Submit Button Enhancements */
.diagnostic-submit {
  cursor: pointer;
  transition: 
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.diagnostic-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(227,38,25,0.45);
  background: linear-gradient(
    135deg,
    #e32619,
    #ff3b2f
  );
}

.diagnostic-submit:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(227,38,25,0.35);
}


@keyframes popIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: radial-gradient(circle, #ff3b2f, #e32619);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 0 30px rgba(227,38,25,0.8);
}

.success-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.success-box p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.success-box button {
  background: linear-gradient(135deg, #e32619, #ff3b2f);
  border: none;
  border-radius: 30px;
  padding: 12px 28px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.success-box button:hover {
  box-shadow: 0 10px 30px rgba(227,38,25,0.5);
}

/* ================================
 AXISBRAND – EXPERIENCE DNA
================================ */

.axis-experience-dna {
  position: relative;
  background: #fff;
  color: #111;
  padding: 180px 20px;
  overflow: hidden;
}

/* BACKGROUND */
.dna-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dna-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
}

.dna-lines {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(227,38,25,0.05),
      rgba(227,38,25,0.05) 1px,
      transparent 1px,
      transparent 120px
    );
}

.dna-crosses {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(227,38,25,0.2) 1px, transparent 1px);
  background-size: 180px 180px;
  opacity: 0.25;
}

/* WRAPPER */
.dna-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

/* HEADER */
.dna-header {
  text-align: center;
  margin-bottom: 120px;
}

.dna-eyebrow {
  color: #e32619;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
}

.dna-header h2 {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  margin-top: 20px;
}

.dna-header span {
  color: #e32619;
}

/* CANVAS */
.dna-canvas {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 140px;
}

/* STORY */
.dna-story .story-block {
  margin-bottom: 40px;
}

.story-block h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.story-block p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

/* CORE */
.dna-core {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
}

.core-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(227,38,25,0.5);
  animation: spin 14s linear infinite;
}

.core-ring.slow {
  inset: -18px;
  border-style: dashed;
  animation-duration: 30s;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.core-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
}
.core-logo {
  width: 200px;
  max-width: 100%;
  margin-bottom: 10px;
}

.core-label {
  font-size: 13px;
  font-weight: 600;
  color: #e32619;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.core-center span {
  font-weight: 800;
  font-size: 18px;
}

.core-center small {
  display: block;
  color: #e32619;
  font-size: 12px;
}

.core-metric {
  position: absolute;
  font-size: 13px;
  font-weight: 600;
  background: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.1);
}

.m1 { top: -10px; left: 50%; transform: translateX(-50%); }
.m2 { right: -20px; top: 50%; transform: translateY(-50%); }
.m3 { bottom: -10px; left: 50%; transform: translateX(-50%); }
.m4 { left: -20px; top: 50%; transform: translateY(-50%); }

/* SIGNALS */
.dna-signals {
  display: grid;
  gap: 22px;
}

.signal-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(0,0,0,0.03);
  border-radius: 14px;
}

.signal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e32619;
  box-shadow: 0 0 10px rgba(227,38,25,0.6);
}

/* STATEMENT */
.dna-statement {
  text-align: center;
}

.dna-statement p {
  font-size: 22px;
  margin-bottom: 30px;
}

.dna-statement strong {
  color: #e32619;
}

.dna-statement h3 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
}

.dna-statement span {
  color: #e32619;
}

/* MOBILE */
@media (max-width: 1000px) {
  .dna-canvas {
    grid-template-columns: 1fr;
    gap: 80px;
  }
}
/* =====================
   INDUSTRY EXPERIENCE
===================== */

.dna-industries {
  margin: 120px auto 100px;
  max-width: 1200px;
  text-align: center;
}

.industries-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 50px;
  color: #111;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.industry-card {
  background: #0c0c0c;
  border-radius: 20px;
  padding: 34px 26px;
  border: 1px solid rgba(227,38,25,0.35);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.03),
    0 20px 60px rgba(0,0,0,0.35);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(227,38,25,0.25),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.industry-card:hover::after {
  opacity: 1;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 30px 90px rgba(227,38,25,0.35),
    inset 0 0 0 1px rgba(227,38,25,0.5);
}

.industry-icon {
  font-size: 28px;
  display: inline-block;
  margin-bottom: 14px;
}

.industry-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.industry-card p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1000px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}
/* ================================
   AXISBRAND – FINAL DECISION ZONE
================================ */

.axis-decision {
  width: 100%;
  overflow: hidden;
  font-family: inherit;
}

/* ---------- SHARED ---------- */
.decision-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 20px;
  position: relative;
  z-index: 2;
}

/* ================= DARK PART ================= */

.decision-dark {
  position: relative;
  background: #000;
  color: #fff;
}

.dark-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.dark-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.25;
}

.dark-beams {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(227,38,25,0.25), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(227,38,25,0.18), transparent 50%);
}

/* Title */
.decision-title {
  text-align: center;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  margin-bottom: 80px;
}

.decision-title span {
  color: #e32619;
}

/* Columns */
.decision-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.decision-col {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 40px;
  backdrop-filter: blur(6px);
}

.decision-col h4 {
  font-size: 20px;
  margin-bottom: 20px;
}

.decision-col ul {
  list-style: none;
  padding: 0;
}

.decision-col li {
  margin-bottom: 14px;
  color: #ccc;
  position: relative;
  padding-left: 22px;
}

.decision-col li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #e32619;
}

/* Divider */
.decision-divider {
  margin: 80px auto 40px;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e32619, transparent);
}

/* Note */
.decision-note {
  text-align: center;
  color: #bbb;
  font-size: 16px;
  line-height: 1.7;
}

/* ================= LIGHT PART ================= */

.decision-light {
  position: relative;
  background: #fff;
  color: #111;
}

.light-bg {
  position: absolute;
  inset: 0;
}

.light-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.35;
}

/* Action */
.action-title {
  text-align: center;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 20px;
}

.action-title span {
  color: #e32619;
}

.action-sub {
  text-align: center;
  color: #555;
  margin-bottom: 60px;
  font-size: 16px;
}

/* CTA Buttons */
.action-ctas {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 16px 36px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.cta-btn.whatsapp {
  background: #25D366;
  color: #fff;
}

.cta-btn.call {
  background: #111;
  color: #fff;
}

.cta-btn.enquiry {
  background: linear-gradient(135deg, #e32619, #ff3b2f);
  color: #fff;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}

/* Mobile */
@media (max-width: 900px) {
  .decision-columns {
    grid-template-columns: 1fr;
  }
}
/* ================================
   Decision Box Icons (Tick / Cross)
================================ */

.decision-col {
  position: relative; /* required for absolute icon */
}

/* Base icon */
.decision-icon {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  opacity: 0.9;
  pointer-events: none;
}

/* Red cross */
.decision-icon.cross {
  color: #e32619;
  text-shadow: 0 0 18px rgba(227,38,25,0.6);
}

/* Green tick */
.decision-icon.tick {
  color: #28c76f;
  text-shadow: 0 0 18px rgba(40,199,111,0.6);
}
.decision-icon {
  animation: iconPop 0.6s ease forwards;
}

@keyframes iconPop {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 0.9;
  }
}
/* ==============================
   RANK CHECKER SECTION
============================== */

.rank-check-section {
  padding: 80px 20px;
  background: #e32619;
  color: #ffffff;
}

.rank-check-container {
  max-width: 900px;
  margin: auto;
}

.rank-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.rank-subtitle {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 30px;
}

.rank-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.rank-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px;
  border-radius: 6px;
  border: none;
  font-size: 15px;
}

.rank-form button {
  padding: 14px 22px;
  border-radius: 6px;
  border: none;
  background: #00e676;
  color: #000;
  font-weight: 700;
  cursor: pointer;
}

.rank-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Loader */
.rank-loader {
  display: none;
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  opacity: 0.8;
}

.rank-spinner {
  width: 38px;
  height: 38px;
  border: 4px solid rgba(255,255,255,0.2);
  border-top: 4px solid #00e676;
  border-radius: 50%;
  animation: rankSpin 1s linear infinite;
  margin: 0 auto 10px;
}

@keyframes rankSpin {
  to { transform: rotate(360deg); }
}

/* Result Box */
.rank-result {
  display: none;
  margin-top: 30px;
  padding: 25px;
  background: #000000;
  border-radius: 10px;
}

.rank-result h3 {
  margin-bottom: 10px;
}

.rank-success {
  color: #00e676;
}

.rank-fail {
  color: #ff5252;
}

.rank-cta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.rank-cta a {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 18px;
  background: #4285f4;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* ============================
   Rank Result Animation
============================ */

 .rank-result {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.rank-result.show {
  opacity: 1;
  transform: translateY(0);
}
/* ============================
   Skeleton Loader
============================ */

.rank-skeleton {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.rank-skeleton span {
  height: 14px;
  width: 100%;
  border-radius: 6px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.18),
    rgba(255,255,255,0.08)
  );
  background-size: 200% 100%;
  animation: skeletonMove 1.2s infinite;
}

.rank-skeleton span:nth-child(1) {
  width: 60%;
}

.rank-skeleton span:nth-child(2) {
  width: 80%;
}

.rank-skeleton span:nth-child(3) {
  width: 40%;
}

@keyframes skeletonMove {
  from { background-position: 200% 0; }
  to { background-position: -200% 0; }
}

/* Rank Checker Lead Popup */
.rank-lead-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Fix popup box positioning */
.rank-lead-box {
  position: relative;   /* 🔥 REQUIRED */
  background: #ffffff;
  width: 90%;
  max-width: 420px;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
}

.rank-lead-box h3 {
  color: #000;
  margin-bottom: 6px;
}

.rank-lead-box p {
  color: #555;
  margin-bottom: 20px;
}

.rank-lead-box input {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.rank-lead-box button {
  width: 100%;
  padding: 14px;
  background: #e10600;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

/* Close button – scoped & safe */
.rank-lead-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent !important;
  border: none;
  font-size: 22px;
  font-weight: 700;
  color: #FF0000;
  cursor: pointer;
  width: auto !important;
  padding: 0 !important;
}
/* Close button – force visibility */
.rank-lead-box .rank-lead-close {
  position: absolute;
  top: 12px;
  right: 14px;

  width: auto;
  height: auto;
  padding: 0;

  background: transparent;
  border: none;

  font-size: 24px;
  line-height: 1;
  font-weight: 800;

  color: #e10600; /* AxisBrand red */
  cursor: pointer;

  z-index: 10;
}
.rank-lead-box .rank-lead-close:hover {
  transform: scale(1.1);
  opacity: 0.85;
}

