/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'DM SANS', sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

body {
  background: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 100%;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left,
.reveal-right,
.reveal {
  will-change: transform, opacity;
}

section {
  overflow: hidden;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  width: 100%;
  background: #000;
  position: fixed;
  top: 0;
  z-index: 999;
}

.container {
  width: 100%;
  padding: 10px 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 65px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 55px;
}

.nav a {
  color: #ff6a00;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #00eaff;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #00eaff;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  position: relative;
}

.service-text,
.arrow {
  color: #ff6a00;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.3s ease;
  display: inline-block;
}

.arrow {
  transition: color 0.3s ease, transform 0.3s ease;
}

.dropdown:hover .service-text,
.dropdown.active .service-text {
  color: #00eaff;
}

.dropdown:hover .arrow,
.dropdown.active .arrow {
  color: #00eaff;
  transform: rotate(180deg);
}

.dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #00eaff;
  transition: width 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after,
.dropdown.active .dropdown-toggle::after {
  width: 100%;
}

.dropdown-menu {
  position: absolute;
  top: 40px;
  left: 0;
  background: #0a0a0a;
  padding: 15px 20px;
  border-radius: 8px;
  display: none;
  flex-direction: column;
  gap: 12px;
  min-width: 170px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.dropdown.active .dropdown-menu {
  display: flex;
}

.dropdown-menu a {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.dropdown-menu a:hover {
  color: #ff6a00;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px 8px;
  line-height: 1;
}

@media (max-width: 768px) {
  .container {
    padding: 20px;
  }

  .nav {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #000;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 25px 0;
    display: none;
    z-index: 998;
  }

  .nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .dropdown-menu {
    position: static;
    background: #111;
    padding: 10px 20px;
    border-radius: 8px;
    margin-top: 8px;
    min-width: 150px;
    text-align: center;
    box-shadow: none;
  }
}

/* ============================================================
   HERO
   ============================================================ */
/* ── HOME HERO ─────────────────────────────────── */
.hero {
  min-height: calc(100vh - 130px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(0, 160, 140, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 50%, rgba(160, 55, 0, 0.14) 0%, transparent 50%),
    #000;
  padding: 130px 16px 40px 16px;
}

.hero-content {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

/* Label with orange lines on sides */
.hero-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #FF6B00;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-sub-line {
  display: inline-block;
  width: 40px;
  height: 1.5px;
  background: #FF6B00;
  flex-shrink: 0;
}

/* Main heading — 2 lines */
.hero-title {
  font-size: clamp(2rem, 3.5vw, 46px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;

  margin-bottom: 28px;
  color: #fff;
}

/* Neon cyan glow word */
.hero-glow {
  color: #00E5FF;
  text-shadow:
    0 0 10px rgba(0, 229, 255, 1),
    0 0 25px rgba(0, 229, 255, 0.75),
    0 0 55px rgba(0, 229, 255, 0.4),
    0 0 100px rgba(0, 229, 255, 0.15);
  animation: glow-pulse 2.8s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  from {
    text-shadow:
      0 0 10px rgba(0, 229, 255, 0.95),
      0 0 25px rgba(0, 229, 255, 0.65),
      0 0 50px rgba(0, 229, 255, 0.3);
  }

  to {
    text-shadow:
      0 0 16px rgba(0, 229, 255, 1),
      0 0 40px rgba(0, 229, 255, 0.85),
      0 0 80px rgba(0, 229, 255, 0.5),
      0 0 130px rgba(0, 229, 255, 0.2);
  }
}

/* Description — 3 lines */
.hero-desc {
  font-size: 16px;
  color: #bbb;
  line-height: 1.8;
  margin-bottom: 0;
}

/* CTA Button */
.hero-btn {
  margin-top: 38px;
}

.hero-btn a {
  display: inline-block;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  background: #FF6B00;
  text-decoration: none;
  border-radius: 30px;
  border: 2px solid #FF6B00;
  letter-spacing: 0.03em;
  box-shadow: 0 0 14px rgba(255, 107, 0, 0.5), 0 0 32px rgba(255, 107, 0, 0.2);
  transition: all 0.35s ease;
}

.hero-btn a:hover {
  background: transparent;
  color: #00E5FF;
  border-color: #00E5FF;
  box-shadow:
    0 0 14px rgba(0, 229, 255, 0.65),
    0 0 40px rgba(0, 229, 255, 0.3);
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 110px 20px 40px;
    min-height: 100vh;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-desc {
    font-size: 14px;
  }

  .hero-desc br {
    display: none;
  }

  .hero-sub {
    font-size: 11px;
  }

  .hero-sub-line {
    width: 28px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 24px;
  }
}

/* ============================================================
   RIBBONS
   ============================================================ */
.ribbon-track,
.reveal,
.reveal-left,
.reveal-right {
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.ribbons {
  overflow: hidden;
  contain: layout style;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.ribbon {
  width: 100%;
  overflow: hidden;
  padding: clamp(10px, 2vw, 18px) 0;
  position: relative;
  background:
    linear-gradient(to right, transparent, #FF6B00 20%, #FF6B00 80%, transparent) top / 100% 1px no-repeat,
    linear-gradient(to right, transparent, #00F5FF 20%, #00F5FF 80%, transparent) bottom / 100% 1px no-repeat;
}

.ribbon-track {
  display: flex;
  align-items: center;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
}

.ribbon-track.left {
  animation: moveLeft 40s linear infinite;
}

.ribbon-track.right {
  animation: moveRight 40s linear infinite;
}

@keyframes moveLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes moveRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.ribbon-item {
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 20px);
  padding: 0 clamp(12px, 2.5vw, 32px);
}

.ribbon-item span.word {
  font-size: clamp(12px, 2.5vw, 28px);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.ribbon-item span.dot {
  width: clamp(4px, 0.8vw, 6px);
  height: clamp(4px, 0.8vw, 6px);
  border-radius: 50%;
  background: #444;
  flex-shrink: 0;
  display: inline-block;
}

.ribbon.outlined .word {
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}

.ribbon.outlined .dot {
  background: #333;
}

/* ============================================================
   HOW WE CAN HELP — section header
   ============================================================ */
.section-3-header {
  width: 100%;
  background-color: #000;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: left;
}

.impact-heading {
  color: #e0e0e0;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: bold;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 15px;
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -1px;
  font-size: clamp(50px, 8vw, 90px);
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   ACCORDION
   ============================================================ */
.accordion-wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  background: #000;
  padding: 0 20px 40px;
}

.acc-item {
  border-top: 0.5px solid #333;
  transition: background 0.3s ease;
}

.acc-item:last-child {
  border-bottom: 0.5px solid #333;
}

.acc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 0;
  cursor: pointer;
  user-select: none;
  gap: 12px;
}

.acc-title-block {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.acc-number {
  font-size: 11px;
  color: #666;
  line-height: 1;
  margin-bottom: 2px;
  letter-spacing: 0.08em;
}

.acc-title-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
}

.acc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: bold;
  font-size: clamp(30px, 6vw, 72px);
  line-height: 1;
  color: #D94F30;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}

.acc-sub {
  font-size: 18px;
  color: #888;
  padding-bottom: 2px;
}

.acc-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #555;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 14px;
  position: relative;
  transition: all 0.3s ease;
}

.icon-plus,
.icon-close {
  position: absolute;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  transition: opacity 0.2s ease, transform 0.3s ease;
  color: #aaa;
}

.icon-close {
  opacity: 0;
  transform: rotate(-45deg);
}

.icon-plus {
  opacity: 1;
}

.acc-item.open .icon-plus {
  opacity: 0;
  transform: rotate(45deg);
}

.acc-item.open .icon-close {
  opacity: 1;
  transform: rotate(0deg);
  color: #D94F30;
}

.acc-item.open .acc-toggle {
  border-color: #D94F30;
  transform: scale(1.1);
}

.acc-item.open .acc-title {
  color: #ff5e3a;
}

/* FIX: acc-body needs opacity transition both ways */
.acc-body {
  overflow: hidden;
  max-height: 0;
  background: transparent;
  transition: max-height 0.5s cubic-bezier(0.77, 0, 0.18, 1), opacity 0.4s ease;
  opacity: 0;
}

.acc-item.open .acc-body {
  opacity: 1;
}

.acc-body-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 0 40px;
  padding-bottom: 40px;
  align-items: start;
}

@media (max-width: 992px) {
  .acc-body-inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
  }

  .acc-desc {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .acc-body-inner {
    grid-template-columns: 1fr;
    gap: 20px 0;
  }

  .acc-desc {
    grid-column: 1;
  }

  .acc-title {
    font-size: 40px;
  }

  .acc-header {
    padding: 24px 0;
  }

  .acc-sub {
    font-size: 14px;
  }
}

.acc-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #aaa;
}

.acc-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.acc-list li {
  font-size: 16px;
  color: #ccc;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.acc-list li::before {
  content: '•';
  color: #00ffff;
  text-shadow: 0 0 8px #00ffff;
  font-size: 18px;
  line-height: 1.2;
  flex-shrink: 0;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-wrap {
  font-family: 'DM Sans', sans-serif;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px 20px;
  background-color: #000;
}

.process-header {
  margin-bottom: 50px;
  display: flex;
  align-items: baseline;
  gap: 15px;
}

.process-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(50px, 8vw, 90px);
  color: #e0e0e0;
  letter-spacing: -1px;
  line-height: 0.85;
  text-transform: uppercase;
}

.process-header span {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(16px, 2vw, 24px);
  color: #555;
  font-weight: 400;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  background: #0a0a0a;
}

.step-col {
  padding: 25px;
  border-left: 1px solid #222;
  border-bottom: 1px solid #222;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: all 0.4s ease-in-out;
  position: relative;
}

.step-col:last-child {
  border-right: 1px solid #222;
}

.step-col:nth-child(2) {
  border-right: 1px solid #222;
}

.step-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.step-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: #333;
  transition: color 0.3s ease;
}

.icon-box {
  width: 50px;
  height: 50px;
  background: #151515;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.step-title {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

.step-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
}

.step-col:hover {
  background: #0f0f0f;
  transform: translateY(-10px);
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.step-col:nth-child(odd):hover {
  border: 2px solid #00d4ff;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 212, 255, .5), 0 0 40px rgba(0, 212, 255, .3), 0 0 60px rgba(0, 212, 255, .1);
}

.step-col:nth-child(odd):hover .step-number {
  color: #00d4ff;
}

.step-col:nth-child(odd):hover .icon-box {
  background: #00d4ff;
  color: #000;
  box-shadow: 0 0 20px rgba(0, 212, 255, .4);
}

.step-col:nth-child(even):hover {
  border: 2px solid #ff6a00;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 106, 0, .5), 0 0 40px rgba(255, 106, 0, .3), 0 0 60px rgba(255, 106, 0, .1);
}

.step-col:nth-child(even):hover .step-number {
  color: #ff6a00;
}

.step-col:nth-child(even):hover .icon-box {
  background: #ff6a00;
  color: #000;
  box-shadow: 0 0 20px rgba(255, 106, 0, .4);
}

@media (max-width: 650px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-header {
    flex-direction: column;
    gap: 5px;
  }

  .step-col:nth-child(2) {
    border-right: 1px solid #222;
  }

  .step-col:last-child {
    border-right: 1px solid #222;
  }
}

/* ============================================================
   CTA BREAKOUT
   ============================================================ */
.cta-breakout {
  background-color: #000;
  padding: 40px 20px 100px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  flex-direction: column;
}

.neon-button {
  position: relative;
  display: inline-block;
  padding: 14px 32px;
  color: #000;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  background-color: #ff6a00;
  border: 2px solid #ff6a00;
  border-radius: 100px;
  box-shadow: 0 0 20px rgba(255, 106, 0, .6);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 5;
}

.btn-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, #ff6a00 0%, transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(35px);
  opacity: 0.5;
  transition: all 0.4s ease;
  z-index: -1;
  pointer-events: none;
}

.neon-button:hover {
  background-color: #00d4ff;
  border-color: #00d4ff;
  color: #000;
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 0 20px rgba(0, 212, 255, .8);
}

.neon-button:hover .btn-glow {
  background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
  opacity: 0.7;
  width: 80%;
}

.section-subtext {
  margin-top: 40px;
  color: #666;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  max-width: 90%;
  text-align: center;
  white-space: nowrap;
}

/* ============================================================
   CLIENTS MARQUEE
   ============================================================ */
.clients-section {
  width: 100%;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 40px;
  background: transparent;
}

.section-label {
  text-align: center;
  width: 100%;
  display: block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 25px;
}

.marquee-outer {
  position: relative;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 10px;
  overflow: hidden;
}

.marquee-outer::before,
.marquee-outer::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15vw;
  max-width: 200px;
  z-index: 2;
  pointer-events: none;
}

.marquee-outer::before {
  left: 0;
  background: linear-gradient(to right, #000 15%, transparent);
}

.marquee-outer::after {
  right: 0;
  background: linear-gradient(to left, #000 15%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 40s linear infinite;
  will-change: transform;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.logo-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 100px;
  margin: 0 12px;
  background: #fff;
  border-radius: 6px;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-slot:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .3);
  z-index: 5;
}

.logo-img {
  max-height: 90%;
  max-width: 90%;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .logo-slot {
    width: 150px;
    height: 80px;
    margin: 0 8px;
  }

  .marquee-outer::before,
  .marquee-outer::after {
    width: 80px;
  }
}

@media (max-width: 480px) {
  .logo-slot {
    width: 120px;
    height: 65px;
    margin: 0 6px;
  }
}

/* ============================================================
   CONTACT (HOME PAGE SECTION)
   ============================================================ */
.contact-section {
  position: relative;
  background-color: #0d0d0d;
  overflow: hidden;
  padding: 160px 24px 60px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.contact-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.contact-blob--teal {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, #00c9a7, #007a63);
  top: -80px;
  left: -120px;
}

.contact-blob--orange {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #e87c2e, #b84a00);
  bottom: -60px;
  right: -100px;
}

.contact-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-left,
.contact-right {
  display: flex;
  flex-direction: column;
}

.contact-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #888;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.contact-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.18;
  margin: 0 0 20px;
}

.contact-subtext {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 20px;
  line-height: 1.65;
  color: #9a9a9a;
  margin: 0 0 36px;
  max-width: 1000px;
  width: 100%;
}

.contact-status {
  display: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin-bottom: 20px;
}

.contact-status--success {
  background: rgba(0, 200, 120, .12);
  border: 1px solid rgba(0, 200, 120, .35);
  color: #00e898;
}

.contact-status--error {
  background: rgba(220, 60, 60, .12);
  border: 1px solid rgba(220, 60, 60, .35);
  color: #ff6b6b;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-field {
  width: 100%;
}

.contact-input {
  width: 100%;
  background: #1c1c1c;
  border: 1px solid #2e2e2e;
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 14.5px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #e8e8e8;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
  resize: none;
  -webkit-appearance: none;
  appearance: none;
}

.contact-input::placeholder {
  color: #555;
}

.contact-input:focus {
  border-color: #0096ff;
  box-shadow: 0 0 0 3px rgba(0, 150, 255, .2);
}

.contact-textarea {
  min-height: 130px;
  line-height: 1.6;
}

.contact-btn {
  position: relative;
  width: 100%;
  padding: 18px 32px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  letter-spacing: 0.01em;
  color: #1a1a1a;
  background: linear-gradient(90deg, #3ecfa3 0%, #f0c060 100%);
  margin-top: 6px;
  transition: opacity 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
}

.contact-btn:hover:not(:disabled) {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(255, 100, 0, .55);
}

.contact-btn:active:not(:disabled) {
  transform: translateY(0);
  opacity: 0.85;
}

.contact-btn:disabled {
  cursor: not-allowed;
  opacity: 0.75;
}

.contact-btn-text {
  transition: opacity 0.2s ease;
}

.contact-btn-loader {
  display: none;
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(26, 26, 26, .3);
  border-top-color: #1a1a1a;
  border-radius: 50%;
  animation: contactSpin 0.7s linear infinite;
}

@keyframes contactSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-section {
    padding: 120px 18px 80px;
    min-height: auto;
  }

  .contact-blob--teal {
    width: 300px;
    height: 300px;
    left: -80px;
  }

  .contact-blob--orange {
    width: 280px;
    height: 280px;
    right: -70px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 100px 16px 60px;
  }

  .contact-subtext {
    font-size: 16px;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer-wrapper {
  background: linear-gradient(to bottom, #111111 0%, #442200 40%, #d35400 100%);
  padding: 15px 40px 0 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
  font-family: sans-serif;
}

.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  min-width: 280px;
  margin-bottom: 0;
}

.footer-column.links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-column.links a {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.footer-column.links a:hover {
  color: #fff;
}

.footer-column.social {
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
}

.social-icons a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.social-icons a:hover {
  color: #00f2ff;
  filter: drop-shadow(0 0 10px #00f2ff);
  transform: translateY(-5px);
}

.copyright {
  font-size: 16px;
  color: rgba(255, 255, 255, .5);
}

.footer-column.contact {
  text-align: right;
}

.footer-column.contact a,
.footer-column.contact p {
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  font-size: 18px;
  margin: 5px 0;
  display: block;
}

.footer-big-branding {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 0;
}

.footer-big-branding img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin-bottom: -5px;
}

@media (max-width: 900px) {
  .footer-top-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    min-width: unset;
    width: 100%;
    margin-bottom: 24px;
  }

  .footer-column.contact {
    text-align: center;
  }

  .footer-big-branding img {
    width: 100%;
    max-width: none;
  }

  .site-footer-wrapper {
    padding: 30px 20px 0;
  }
}

@media (max-width: 480px) {
  .footer-column.links a {
    font-size: 14px;
  }

  .footer-column.contact a,
  .footer-column.contact p {
    font-size: 15px;
  }
}

/* ============================================================
   CONTACT PAGE — c- prefix (zero conflict with style.css)
   ============================================================ */

:root {
  --cc-black: #080808;
  --cc-dark: #0d0d0d;
  --cc-card: #111111;
  --cc-card2: #161616;
  --cc-border: rgba(255, 255, 255, 0.07);
  --cc-white: #ffffff;
  --cc-muted: #7a8494;
  --cc-blue: #00f0ff;
  --cc-orange: #ff6500;
}

.c-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cc-blue) 30%, var(--cc-orange) 70%, transparent);
  opacity: 0.25;
}

/* ── HERO ── */
.c-hero {
  position: relative;
  min-height: calc(100vh - 130px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(0, 160, 140, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 50%, rgba(160, 55, 0, 0.14) 0%, transparent 50%),
    #000;
  padding: 50px 16px 40px 16px;
}

.c-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  animation: cGridMove 18s linear infinite;
  will-change: background-position;
}

@keyframes cGridMove {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 56px 56px;
  }
}

.c-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 15% 50%, rgba(0, 240, 255, 0.10) 0%, transparent 65%),
    radial-gradient(ellipse 45% 45% at 85% 50%, rgba(255, 101, 0, 0.10) 0%, transparent 65%);
  pointer-events: none;
}

.c-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.c-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cc-orange);
  margin-bottom: 24px;
  font-family: 'DM Sans', sans-serif;
}

.c-eyebrow::before,
.c-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1.5px;
  flex-shrink: 0;
}

.c-eyebrow::before {
  background: linear-gradient(90deg, transparent, var(--cc-orange));
}

.c-eyebrow::after {
  background: linear-gradient(90deg, var(--cc-orange), transparent);
}

.c-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 3.5vw, 46px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 28px;
  color: #fff;
}

.c-blue {
  color: var(--cc-blue);
  text-shadow: 0 0 30px rgba(0, 240, 255, 0.6), 0 0 70px rgba(0, 240, 255, 0.2);
}

.c-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #bbb;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .c-hero {
    padding: 110px 20px 40px;
    min-height: 100vh;
  }

  .c-title {
    font-size: 30px;
  }

  .c-sub {
    font-size: 14px;
  }

  .c-eyebrow {
    font-size: 11px;
  }

  .c-eyebrow::before,
  .c-eyebrow::after {
    width: 28px;
  }
}

@media (max-width: 480px) {
  .c-hero {
    padding: 110px 16px 40px;
  }

  .c-title {
    font-size: 24px;
  }
}

/* ── CONTACT BODY ── */
.c-body {
  padding: 90px 60px 100px;
  background: var(--cc-dark);
}

.c-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

/* LEFT */
.c-info-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cc-orange);
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
}

.c-info-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--cc-orange);
  box-shadow: 0 0 8px var(--cc-orange);
  flex-shrink: 0;
}

.c-info-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--cc-white);
}

.c-info-heading span {
  color: var(--cc-orange);
  text-shadow: 0 0 24px rgba(255, 101, 0, 0.5);
}

.c-info-desc {
  font-size: 0.95rem;
  color: rgba(200, 215, 230, 0.6);
  line-height: 1.85;
  margin-bottom: 40px;
  font-family: 'DM Sans', sans-serif;
}

.c-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.c-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: var(--cc-card);
  border: 1px solid var(--cc-border);
  transition: background 0.22s ease, border-color 0.22s ease;
  text-decoration: none;
}

.c-row:hover {
  background: var(--cc-card2);
  border-color: rgba(0, 240, 255, 0.2);
}

.c-row.c-row-orange:hover {
  border-color: rgba(255, 101, 0, 0.2);
}

.c-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.c-row:hover .c-icon {
  transform: scale(1.1);
}

.c-icon-blue {
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.2);
}

.c-icon-orange {
  background: rgba(255, 101, 0, 0.08);
  border: 1px solid rgba(255, 101, 0, 0.2);
}

.c-row:hover .c-icon-blue {
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.3);
}

.c-row:hover .c-icon-orange {
  box-shadow: 0 0 16px rgba(255, 101, 0, 0.3);
}

.c-row-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cc-muted);
  margin-bottom: 3px;
  font-family: 'DM Sans', sans-serif;
}

.c-row-value {
  font-size: 0.95rem;
  color: var(--cc-white);
  font-weight: 400;
  transition: color 0.22s ease;
  font-family: 'DM Sans', sans-serif;
}

.c-row:hover .c-row-value {
  color: var(--cc-blue);
}

.c-row.c-row-orange:hover .c-row-value {
  color: var(--cc-orange);
}

.c-social {
  margin-top: 32px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.c-soc-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  border: 1px solid var(--cc-border);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cc-muted);
  text-decoration: none;
  transition: border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.c-soc-btn:hover {
  border-color: var(--cc-blue);
  color: var(--cc-blue);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.15);
}

.c-soc-btn.c-soc-o:hover {
  border-color: var(--cc-orange);
  color: var(--cc-orange);
  box-shadow: 0 0 12px rgba(255, 101, 0, 0.15);
}

/* FORM */
.c-form-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 32px;
  color: var(--cc-white);
}

.c-form-title span {
  color: var(--cc-blue);
  text-shadow: 0 0 18px rgba(0, 240, 255, 0.4);
}

.c-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.c-field>label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cc-orange);
  font-family: 'DM Sans', sans-serif;
}

.c-field input[type="text"],
.c-field input[type="email"],
.c-field input[type="tel"],
.c-field textarea {
  background: var(--cc-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--cc-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
}

.c-field input::placeholder,
.c-field textarea::placeholder {
  color: var(--cc-muted);
}

.c-field input:focus,
.c-field textarea:focus {
  border-color: var(--cc-blue);
  box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.08);
  background: rgba(0, 240, 255, 0.03);
}

.c-field textarea {
  resize: vertical;
  min-height: 120px;
}

/* DROPDOWN (details/summary) */
.c-drop {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: var(--cc-card);
  overflow: hidden;
}

.c-drop summary {
  list-style: none;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cc-orange);
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  transition: background 0.2s ease;
}

.c-drop summary::-webkit-details-marker {
  display: none;
}

.c-drop summary::after {
  content: '▶';
  font-size: 10px;
  color: var(--cc-orange);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.c-drop[open] summary::after {
  transform: rotate(90deg);
}

.c-drop summary:hover {
  background: rgba(255, 101, 0, 0.05);
}

.c-opts {
  padding: 12px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  animation: cFadeDown 0.2s ease;
}

@keyframes cFadeDown {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.c-check,
.c-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.c-check input[type="checkbox"],
.c-radio input[type="radio"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
  padding: 0;
  margin: 0;
  accent-color: var(--cc-blue);
}

.c-radio input[type="radio"] {
  accent-color: var(--cc-orange);
}

.c-check span,
.c-radio span {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--cc-white);
  font-family: 'DM Sans', sans-serif;
}

/* SUBMIT */
.c-submit {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 48px;
  background: var(--cc-orange);
  color: #000;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.25s ease;
  box-shadow: 0 0 28px rgba(255, 101, 0, 0.35);
}

.c-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.45s ease;
}

.c-btn:hover::before {
  left: 160%;
}

.c-btn:hover {
  box-shadow: 0 0 50px rgba(255, 101, 0, 0.6);
  transform: translateY(-2px);
}

.c-arr {
  transition: transform 0.25s ease;
}

.c-btn:hover .c-arr {
  transform: translateX(4px);
}

.c-success {
  display: none;
  padding: 28px 32px;
  border: 1px solid rgba(0, 240, 255, 0.25);
  background: rgba(0, 240, 255, 0.04);
  border-radius: 8px;
  margin-top: 24px;
}

.c-success h4 {
  font-family: 'DM SANS', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--cc-blue);
  margin-bottom: 8px;
  text-shadow: 0 0 16px rgba(0, 240, 255, 0.4);
}

.c-success p {
  font-size: 0.9rem;
  color: rgba(200, 215, 230, 0.6);
  font-family: 'DM Sans', sans-serif;
}

/* WHY US */
.c-why {
  background: var(--cc-black);
  padding: 80px 60px;
}

.c-why-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--cc-border);
}

.c-why-cell {
  background: var(--cc-card);
  padding: 40px 32px;
  text-align: center;
  transition: background 0.22s ease;
}

.c-why-cell:hover {
  background: var(--cc-card2);
}

.c-why-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: block;
  transition: transform 0.25s ease;
}

.c-why-cell:hover .c-why-icon {
  transform: scale(1.15) rotate(-5deg);
}

.c-why-cell:nth-child(odd) .c-why-icon {
  color: var(--cc-blue);
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.5));
}

.c-why-cell:nth-child(even) .c-why-icon {
  color: var(--cc-orange);
  filter: drop-shadow(0 0 8px rgba(255, 101, 0, 0.5));
}

.c-why-cell h4 {
  font-family: 'DM SANS', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--cc-white);
  margin-bottom: 10px;
}

.c-why-cell p {
  font-size: 0.84rem;
  color: var(--cc-muted);
  line-height: 1.65;
  margin: 0;
  font-family: 'DM Sans', sans-serif;
}

/* FAQ */
.c-faq {
  padding: 100px 60px;
  background: var(--cc-dark);
}

.c-faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.c-faq-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cc-orange);
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
}

.c-faq-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--cc-orange);
  box-shadow: 0 0 8px var(--cc-orange);
  flex-shrink: 0;
}

.c-faq-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 48px;
  color: var(--cc-white);
}

.c-faq-title span {
  color: var(--cc-blue);
  text-shadow: 0 0 22px rgba(0, 240, 255, 0.45);
}

.c-faq-item {
  border-bottom: 1px solid var(--cc-border);
}

.c-faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
}

.c-faq-q span {
  font-family: 'DM SANS', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cc-white);
  transition: color 0.22s ease;
}

.c-faq-q:hover span {
  color: var(--cc-blue);
}

.c-faq-icon {
  font-size: 1.3rem;
  color: var(--cc-orange);
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.22s ease;
  line-height: 1;
  font-style: normal;
}

.c-faq-item.open .c-faq-icon {
  transform: rotate(45deg);
  color: var(--cc-blue);
}

/* FIX: use auto max-height for FAQ to avoid clipping on mobile */
.c-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.c-faq-item.open .c-faq-a {
  max-height: 500px;
  padding-bottom: 22px;
}

.c-faq-a p {
  font-size: 0.92rem;
  color: rgba(200, 215, 230, 0.6);
  line-height: 1.8;
  font-family: 'DM Sans', sans-serif;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .c-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .c-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .c-title {
    font-size: 36px;
  }

  .c-body {
    padding: 60px 22px 80px;
  }

  .c-why {
    padding: 60px 22px;
  }

  .c-faq {
    padding: 60px 22px;
  }

  .c-sub {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .c-hero {
    padding: 100px 20px 40px;
  }

  .c-title {
    font-size: 28px;
  }

  .c-why-grid {
    grid-template-columns: 1fr;
  }

  .c-why-cell {
    padding: 30px 20px;
  }
}

@media (max-width: 400px) {
  .c-title {
    font-size: 24px;
  }

  .c-btn {
    padding: 15px 28px;
    font-size: 1rem;
  }
}

/* ============================================================
   about.css — About Us page styles ONLY
   Link ONLY in "about-us", AFTER style.css
   Scoped entirely under .au-hero* — zero risk of affecting
   home hero or contact hero.
   ============================================================ */

/* ============================================================
   DIZORA — about.css
   Covers: Hero · Stats · Who We Are · Services · Approach · CTA
   ============================================================ */


/* ══════════════════════════════════════════
   SCROLL REVEAL — base states
   JS adds .in-view via IntersectionObserver
   ══════════════════════════════════════════ */

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-22px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-up.in-view,
.reveal-left.in-view {
  opacity: 1;
  transform: translate(0, 0);
}


/* ══════════════════════════════════════════
   SHARED — section label (orange line + text)
   ══════════════════════════════════════════ */

.sec-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ff6500;
  margin-bottom: 16px;
}

.sec-label::before {
  content: '';
  display: block;
  width: 26px;
  height: 1px;
  background: #ff6500;
  box-shadow: 0 0 5px #ff6500;
  flex-shrink: 0;
}


/* ══════════════════════════════════════════
   HERO — About page
   ══════════════════════════════════════════ */

.hero-about {
  min-height: calc(100vh - 130px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(0, 160, 140, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 50%, rgba(160, 55, 0, 0.14) 0%, transparent 50%),
    #000;
  padding: 130px 16px 40px 16px;
}

.hero-about__inner {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Eyebrow */
.hero-about__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #00d4d4;
  text-transform: uppercase;
  margin: 0;
  /* reveal */
  opacity: 0;
  transform: translateY(16px);
  animation: heroFade 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

/* Main heading — matches home page scale */
.hero-about__heading {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 3.4vw, 46px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 28px;
  color: #fff;
  /* reveal */
  opacity: 0;
  transform: translateY(20px);
  animation: heroFade 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.22s forwards;
}

.hero-about__accent {
  color: #00d4d4;
  text-shadow: 0 0 20px rgba(0, 212, 212, 0.7),
    0 0 40px rgba(0, 212, 212, 0.4),
    0 0 80px rgba(0, 212, 212, 0.2);
}

/* Subtext */
.hero-about__subtext {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(200, 210, 225, 0.65);
  line-height: 1.8;
  max-width: 600px;
  margin: 0;
  /* reveal */
  opacity: 0;
  transform: translateY(16px);
  animation: heroFade 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.38s forwards;
}

/* CTA button */
.hero-about__cta {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 36px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  color: #ffffff;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  /* reveal */
  opacity: 0;
  transform: translateY(14px);
  animation: heroFade 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.52s forwards;
}

.hero-about__cta:hover {
  background: #00d4d4;
  border-color: #00d4d4;
  color: #000;
}

@keyframes heroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero responsive */
@media (max-width: 768px) {
  .hero-about {
    padding: 110px 20px 40px;
  }

  .hero-about__heading {
    font-size: 30px;
  }

  .hero-about__subtext {
    font-size: 14px;
  }

  .hero-about__eyebrow {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .hero-about {
    padding: 110px 16px 40px;
  }

  .hero-about__heading {
    font-size: 24px;
  }

  .hero-about__cta {
    width: 100%;
    text-align: center;
  }
}

/* ══════════════════════════════════════════
   SECTION 1 — STATS BAR
   Numbers count up via JS on scroll
   ══════════════════════════════════════════ */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #0d0d0d;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Stat cell */
.stat {
  padding: 40px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
}

.stat:last-child {
  border-right: none;
}

/* Radial glow per cell */
.stat::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
}

.stat:nth-child(1)::before {
  background: radial-gradient(ellipse 60% 70% at 0% 50%, rgba(0, 240, 255, 0.07) 0%, transparent 70%);
}

.stat:nth-child(2)::before {
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(255, 101, 0, 0.08) 0%, transparent 70%);
}

.stat:nth-child(3)::before {
  background: radial-gradient(ellipse 60% 70% at 100% 50%, rgba(0, 240, 255, 0.07) 0%, transparent 70%);
}

/* Number — start hidden, JS reveals + counts up */
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  /* tighter than before */
  line-height: 1;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.stat-num.in-view {
  opacity: 1;
  transform: translateY(0);
}

.stat:nth-child(1) .stat-num {
  color: #00f0ff;
  text-shadow: 0 0 24px rgba(0, 240, 255, 0.5);
}

.stat:nth-child(2) .stat-num {
  color: #ff6500;
  text-shadow: 0 0 24px rgba(255, 101, 0, 0.5);
}

.stat:nth-child(3) .stat-num {
  color: #00f0ff;
  text-shadow: 0 0 24px rgba(0, 240, 255, 0.5);
}

/* Label */
.stat-lbl {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(180, 190, 210, 0.6);
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease 0.3s;
}

.stat-lbl.in-view {
  opacity: 1;
}

/* Stats responsive */
@media (max-width: 600px) {
  .stats {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 28px 24px;
  }

  .stat:last-child {
    border-bottom: none;
  }
}


/* ══════════════════════════════════════════
   SECTION 2 — WHO WE ARE
   ══════════════════════════════════════════ */

.who {
  padding: 70px 60px;
  background: #0d0d0d;
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* Left column */
.who-left {
  padding-right: 64px;
}

/* Heading — matches home scale */
.who-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 24px;
}

.who-title .blue {
  color: #00f0ff;
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

/* Body text */
.who-body p {
  font-size: 0.9rem;
  color: rgba(200, 210, 225, 0.65);
  line-height: 1.8;
  margin-bottom: 14px;
  max-width: 460px;
}

/* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 26px;
}

.tag {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(200, 210, 225, 0.6);
  cursor: default;
  transition: border-color 0.2s, color 0.2s;
}

.tag:hover {
  border-color: #00f0ff;
  color: #00f0ff;
}

/* Right: 2×2 tile grid */
.tile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.tile {
  padding: 32px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.2s;
}

.tile:nth-child(even) {
  border-right: none;
}

.tile:nth-child(3),
.tile:nth-child(4) {
  border-bottom: none;
}

.tile:hover {
  background: rgba(255, 255, 255, 0.025);
}

.tile-icon {
  line-height: 1;
}

.tile:nth-child(odd) .tile-icon {
  color: #00f0ff;
  filter: drop-shadow(0 0 5px rgba(0, 240, 255, 0.55));
}

.tile:nth-child(even) .tile-icon {
  color: #ff6500;
  filter: drop-shadow(0 0 5px rgba(255, 101, 0, 0.55));
}

.tile h4 {
  font-family: 'DM sans', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.tile p {
  font-size: 0.85rem;
  color: rgba(200, 210, 225, 0.6);
  line-height: 1.7;
  margin: 0;
}

/* Who responsive */
@media (max-width: 860px) {
  .who {
    padding: 60px 28px;
  }

  .who-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .who-left {
    padding-right: 0;
  }

  .tile-grid {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 500px) {
  .tile-grid {
    grid-template-columns: 1fr;
  }

  .tile {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .tile:last-child {
    border-bottom: none;
  }
}


/* ══════════════════════════════════════════
   SECTION 3 — SERVICES
   svc-row needs position:relative for ::before/::after
   ══════════════════════════════════════════ */

.services {
  padding: 70px 60px 80px;
  background: #080808;
  position: relative;
  overflow: hidden;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Ambient glows */
.services::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.04) 0%, transparent 70%);
  top: -180px;
  right: -180px;
  pointer-events: none;
  animation: drift 12s ease-in-out infinite alternate;
}

.services::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 101, 0, 0.05) 0%, transparent 70%);
  bottom: -120px;
  left: -120px;
  pointer-events: none;
  animation: drift 15s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(36px, 28px);
  }
}

/* Section heading */
.sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 48px;
}

.sec-title .blue {
  color: #00f0ff;
  text-shadow: 0 0 26px rgba(0, 240, 255, 0.55);
}

.svc-list {
  position: relative;
  z-index: 2;
}

/* Service row — MUST have position:relative for accent bar */
.svc-row {
  display: grid;
  grid-template-columns: 64px 1fr 1fr 40px;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  /* ← fixes ::before/::after */
  cursor: default;
  overflow: hidden;
  transition: padding-left 0.3s ease;
}

.svc-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Hover fill */
.svc-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 240, 255, 0.03) 0%, rgba(255, 101, 0, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.svc-row:hover::before {
  opacity: 1;
}

/* Left accent bar */
.svc-row::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #00f0ff, #ff6500);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: opacity 0.28s, transform 0.32s;
}

.svc-row:hover::after {
  opacity: 1;
  transform: scaleY(1);
}

.svc-row:hover {
  padding-left: 14px;
}

/* Number flip */
.svc-num-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 1.4em;
}

.svc-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  color: #ff6500;
  transition: transform 0.38s cubic-bezier(0.23, 1, 0.32, 1);
}

.svc-num-hover {
  position: absolute;
  top: 100%;
  left: 0;
  color: #00f0ff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  transition: transform 0.38s cubic-bezier(0.23, 1, 0.32, 1);
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.8);
  white-space: nowrap;
}

.svc-row:hover .svc-num {
  transform: translateY(-100%);
}

.svc-row:hover .svc-num-hover {
  transform: translateY(-100%);
}

/* Service name */
.svc-name {
  font-family: 'DM SANS', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  z-index: 1;
  transition: color 0.28s, text-shadow 0.28s, letter-spacing 0.28s;
}

.svc-row:hover .svc-name {
  color: #00f0ff;
  text-shadow: 0 0 18px rgba(0, 240, 255, 0.4);
  letter-spacing: 0.09em;
}

/* Description */
.svc-desc {
  font-size: 0.88rem;
  color: rgba(200, 210, 225, 0.5);
  line-height: 1.65;
  position: relative;
  z-index: 1;
  transition: color 0.28s;
}

.svc-row:hover .svc-desc {
  color: rgba(200, 210, 225, 0.82);
}

/* Arrow */
.svc-arr {
  font-size: 1.2rem;
  color: #00f0ff;
  opacity: 0;
  transform: translate(-8px, 8px);
  transition: opacity 0.28s, transform 0.28s;
  position: relative;
  z-index: 1;
  text-align: right;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.7);
}

.svc-row:hover .svc-arr {
  opacity: 1;
  transform: translate(0, 0);
}

/* Services responsive */
@media (max-width: 860px) {
  .svc-row {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .svc-desc,
  .svc-arr {
    display: none;
  }
}

@media (max-width: 560px) {
  .services {
    padding: 56px 20px 64px;
  }

  .sec-title {
    margin-bottom: 36px;
  }
}


/* ══════════════════════════════════════════
   SECTION 4 — HOW WE WORK (APPROACH)
   step cards need position:relative too
   ══════════════════════════════════════════ */

.approach {
  padding: 70px 60px;
  background: #0a0a0a;
}

/* Heading */
.approach-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 40px;
}

.approach-title .orange {
  color: #ff6500;
  text-shadow: 0 0 24px rgba(255, 101, 0, 0.45);
}

/* 4-column grid */
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
}

/* Step card */
.step {
  background: #111;
  padding: 32px 24px 36px;
  position: relative;
  /* ← fixes ::before */
  overflow: hidden;
  transition: background 0.22s;
}

.step:hover {
  background: #161616;
}

/* Top glow line on hover */
.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00f0ff, #ff6500);
  opacity: 0;
  transition: opacity 0.25s;
}

.step:hover::before {
  opacity: 1;
}

/* Ghost number */
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
  color: rgba(0, 210, 230, 0.1);
  margin-bottom: 20px;
  display: block;
  user-select: none;
}

/* Step heading */
.step h4 {
  font-family: 'DM SANS', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}

/* Step body */
.step p {
  font-size: 0.85rem;
  color: rgba(200, 210, 225, 0.6);
  line-height: 1.75;
  margin: 0;
}

/* Approach responsive */
@media (max-width: 900px) {
  .step-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .approach {
    padding: 56px 20px;
  }

  .step-grid {
    grid-template-columns: 1fr;
  }
}


/* ══════════════════════════════════════════
   SECTION 5 — CTA (last section)
   ══════════════════════════════════════════ */

.cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px 90px;
  background: #080808;
  overflow: hidden;
}

/* Orange glow — left */
.cta::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 101, 0, 0.16) 0%, transparent 65%);
  top: 50%;
  left: -160px;
  transform: translateY(-50%);
  pointer-events: none;
  animation: ctaPulse 6s ease-in-out infinite alternate;
}

/* Teal glow — top right */
.cta::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.06) 0%, transparent 65%);
  top: -80px;
  right: -80px;
  pointer-events: none;
  animation: ctaPulse 8s ease-in-out infinite alternate-reverse;
}

@keyframes ctaPulse {
  from {
    opacity: 0.7;
    transform: translateY(-50%) scale(1);
  }

  to {
    opacity: 1;
    transform: translateY(-50%) scale(1.08);
  }
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
}

/* CTA heading — tightened from 9.5rem → 4.5rem max */
.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
}

.cta-title .orange {
  color: #ff6500;
  text-shadow: 0 0 32px rgba(255, 101, 0, 0.65), 0 0 64px rgba(255, 101, 0, 0.25);
}

/* Sub paragraph */
.cta-sub {
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(200, 210, 225, 0.58);
  line-height: 1.85;
  max-width: 440px;
  margin: 0 auto 40px;
}

/* ── BOOK A CONSULTATION BUTTON — neon orange ── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ff6500;
  border: 1px solid #ff6500;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(255, 101, 0, 0.28), inset 0 0 12px rgba(255, 101, 0, 0.04);
  transition: color 0.32s, box-shadow 0.32s;
}

/* Sweep fill */
.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #ff6500;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}

.cta-btn:hover::before {
  transform: scaleX(1);
}

.cta-btn-icon,
.cta-btn>* {
  position: relative;
  z-index: 1;
}

.cta-btn:hover {
  color: #000;
  box-shadow: 0 0 24px rgba(255, 101, 0, 0.65), 0 0 50px rgba(255, 101, 0, 0.25);
}

.cta-btn-icon {
  flex-shrink: 0;
  transition: transform 0.28s;
}

.cta-btn:hover .cta-btn-icon {
  transform: translate(3px, -3px);
}

/* CTA responsive */
@media (max-width: 560px) {
  .cta {
    padding: 64px 20px 72px;
  }

  .cta-btn {
    padding: 13px 24px;
    font-size: 0.72rem;
  }
}

/* ============================================================
   BRANDING PAGE — CONSOLIDATED CSS
   Replaces: branding.css + branding-sections.css + scroll-fixes.css
   Link as:  <link rel="stylesheet" href="branding-page.css">
   ============================================================ */

/* ══════════════════════════════════════════
   0. RESET + BASE
══════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ══════════════════════════════════════════
   1. PAGE ENTRANCE — prevents flash on load
══════════════════════════════════════════ */
.page-loading {
  opacity: 0;
}

body {
  /* Smooth fade in on page load */
  opacity: 1;
  transition: opacity 0.45s ease;
  /* Smooth scrolling for all anchor links */
  scroll-behavior: smooth;
  /* Prevent horizontal overflow on mobile */
  overflow-x: hidden;
}

/* ══════════════════════════════════════════
   2. HEADER — scroll state + dropdown fix
══════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease, background 0.3s ease;
  will-change: box-shadow;
}

/* Adds subtle shadow when user scrolls down */
.header.scrolled {
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

/* Dropdown button — reset default button styles */
.dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ══════════════════════════════════════════
   3. SHARED UTILITIES
══════════════════════════════════════════ */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #ff6500;
  margin-bottom: 20px;
}

.sec-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: #ff6500;
  box-shadow: 0 0 8px #ff6500;
  flex-shrink: 0;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #00f0ff 30%, #ff6500 70%, transparent);
  opacity: 0.25;
}

/* ══════════════════════════════════════════
   4. SCROLL REVEAL — single canonical definition
      (fi = fade-in; fi--delay-N = stagger)
══════════════════════════════════════════ */
.fi {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fi.on {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay helpers — use alongside .fi */
.fi--delay-0 {
  transition-delay: 0s;
}

.fi--delay-1 {
  transition-delay: 0.15s;
}

.fi--delay-2 {
  transition-delay: 0.3s;
}

.fi--delay-3 {
  transition-delay: 0.45s;
}

.fi--delay-4 {
  transition-delay: 0.6s;
}

/* ══════════════════════════════════════════
   5. HERO — BRANDING
══════════════════════════════════════════ */
.hero-branding {
  height: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #000;
  /* pt accounts for fixed header (~72px) + breathing room */
  padding: 220px 20px 80px 20px;
}

.hero-branding__inner {
  max-width: 860px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.hero-branding__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

.hero-branding__heading {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.8rem, 8vw, 90px);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.65s forwards;
}

/* Hero animation delayed so page-load fade doesn't clash */
@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════════
   6. TICKER STRIP
══════════════════════════════════════════ */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: transparent;
  padding: 40px 0;
  position: relative;
}

/* Side fade masks */
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  width: 180px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, #080808 0%, transparent 100%);
}

.ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, #080808 0%, transparent 100%);
}

.ticker-ribbon {
  background: #00d2ff;
  height: 60px;
  display: flex;
  align-items: center;
  width: 100%;
  transform: rotate(-1deg);
  box-shadow:
    0 0 20px rgba(0, 210, 255, 0.6),
    0 0 40px rgba(0, 210, 255, 0.3);
  overflow: hidden;
}

/* Animation lives on .ticker-track, not the outer scroll container */
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-move 25s linear infinite;
  will-change: transform;
}

/* Pause on hover for accessibility */
.ticker-wrap:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-set {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.t-item {
  color: #000;
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.t-star {
  font-size: 26px;
  margin-left: 8px;
}

@keyframes ticker-move {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════════
   7. WHAT IS BRANDING
══════════════════════════════════════════ */
.what-sec {
  padding: 100px 60px;
  background: #0d0d0d;
  position: relative;
  overflow: hidden;
}

.what-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.what-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 28px;
}

.what-title .orange {
  color: #ff6500;
  text-shadow: 0 0 24px rgba(255, 101, 0, 0.5);
}

.what-left p {
  font-size: 0.97rem;
  color: rgba(200, 215, 230, 0.6);
  line-height: 1.85;
  margin-bottom: 16px;
  max-width: 480px;
}

.def-box {
  border: 1px solid rgba(0, 240, 255, 0.15);
  padding: 32px 36px;
  background: rgba(0, 240, 255, 0.03);
  position: relative;
}

.def-box::before {
  content: '\201C';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 6rem;
  line-height: 0.8;
  color: rgba(0, 240, 255, 0.08);
  position: absolute;
  top: 16px;
  left: 20px;
}

.def-box p {
  font-size: 1.05rem;
  color: rgba(220, 230, 245, 0.8);
  line-height: 1.8;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.def-box cite {
  display: block;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #00f0ff;
  font-style: normal;
}

/* ══════════════════════════════════════════
   8. THREE PILLARS
══════════════════════════════════════════ */
.pillars {
  padding: 100px 60px;
  background: #080808;
}

.pillars-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.pillars-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 40px;
}

.pillars-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
}

.pillars-head h2 .blue {
  color: #00f0ff;
  text-shadow: 0 0 24px rgba(0, 240, 255, 0.5);
}

.pillars-head p {
  font-size: 0.92rem;
  color: rgba(200, 215, 230, 0.5);
  max-width: 320px;
  text-align: right;
  line-height: 1.7;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.pillar {
  background: #111;
  padding: 48px 40px 52px;
  position: relative;
  overflow: hidden;
  /* keeps pillar-num clipped */
  transition: background 0.25s;
  cursor: default;
}

.pillar:hover {
  background: #161616;
}

/* Coloured top bar on hover */
.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s;
}

.pillar:nth-child(1)::before {
  background: linear-gradient(90deg, #00f0ff, #0080ff);
}

.pillar:nth-child(2)::before {
  background: linear-gradient(90deg, #ff6500, #ff9500);
}

.pillar:nth-child(3)::before {
  background: linear-gradient(90deg, #00f0ff, #ff6500);
}

.pillar:hover::before {
  opacity: 1;
}

.pillar-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 28px;
  opacity: 0.05;
  transition: opacity 0.3s;
  user-select: none;
  color: #fff;
  pointer-events: none;
}

.pillar:hover .pillar-num {
  opacity: 0.08;
}

.pillar-icon {
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.3s ease;
}

.pillar:hover .pillar-icon {
  transform: scale(1.15) rotate(-5deg);
}

.pillar:nth-child(1) .pillar-icon {
  color: #00f0ff;
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, .6));
}

.pillar:nth-child(2) .pillar-icon {
  color: #ff6500;
  filter: drop-shadow(0 0 8px rgba(255, 101, 0, .6));
}

.pillar:nth-child(3) .pillar-icon {
  color: #00f0ff;
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, .6));
}

.pillar h3 {
  font-family: 'DM SANS', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  transition: color 0.25s;
}

.pillar:nth-child(1):hover h3 {
  color: #00f0ff;
}

.pillar:nth-child(2):hover h3 {
  color: #ff6500;
}

.pillar:nth-child(3):hover h3 {
  color: #00f0ff;
}

.pillar p {
  font-size: 0.9rem;
  color: rgba(200, 215, 230, 0.55);
  line-height: 1.8;
  position: relative;
  z-index: 1;
  transition: color 0.25s;
}

.pillar:hover p {
  color: rgba(200, 215, 230, 0.8);
}

/* ══════════════════════════════════════════
   9. PROCESS STEPS
══════════════════════════════════════════ */
.process {
  padding: 100px 60px;
  background: #0d0d0d;
}

.process-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.process-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 56px;
}

.process-title .orange {
  color: #ff6500;
  text-shadow: 0 0 24px rgba(255, 101, 0, 0.45);
}

.proc-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}

/* Connector line */
.proc-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  /* centers on circle */
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, #00f0ff, #ff6500);
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

.proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
  cursor: default;
}

.proc-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
  transition: border-color 0.3s, color 0.3s, box-shadow 0.3s, background 0.3s;
  position: relative;
  z-index: 2;
}

.proc-step:hover .proc-circle {
  border-color: #00f0ff;
  color: #00f0ff;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.35);
  background: rgba(0, 240, 255, 0.06);
}

.proc-step:nth-child(even):hover .proc-circle {
  border-color: #ff6500;
  color: #ff6500;
  box-shadow: 0 0 20px rgba(255, 101, 0, 0.35);
  background: rgba(255, 101, 0, 0.06);
}

.proc-step h4 {
  font-family: 'DM sans', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  transition: color 0.25s;
}

.proc-step:hover h4 {
  color: #fff;
}

.proc-step p {
  font-size: 0.8rem;
  color: rgba(200, 215, 230, 0.4);
  line-height: 1.6;
  transition: color 0.25s;
}

.proc-step:hover p {
  color: rgba(200, 215, 230, 0.7);
}

/* ══════════════════════════════════════════
   10. CTA STRIP
══════════════════════════════════════════ */
.cta-strip {
  padding: 80px 60px;
  background: #080808;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 100% at 50% 50%, rgba(255, 101, 0, .05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-strip-text {
  position: relative;
  z-index: 2;
}

.cta-strip-text h3 {
  font-family: 'DM sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 10px;
  color: #fff;
}

.cta-strip-text h3 .orange {
  color: #ff6500;
  text-shadow: 0 0 24px rgba(255, 101, 0, 0.5);
}

.cta-strip-text p {
  font-size: 0.93rem;
  color: rgba(200, 215, 230, 0.5);
}

/* CTA button */
.cta-btn {
  display: inline-block;
  padding: 22px 52px;
  background: transparent;
  color: #ff6500;
  border: 1px solid #ff6500;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  cursor: pointer;
  box-shadow: 0 0 14px rgba(255, 101, 0, .35), inset 0 0 14px rgba(255, 101, 0, .05);
  transition: color 0.25s, box-shadow 0.25s, transform 0.2s;
  overflow: hidden;
  /* isolate stacking so ::before fill works correctly */
  isolation: isolate;
}

/* Fill slide on hover */
.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #ff6500;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

/* Idle pulse ring */
.cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid #ff6500;
  opacity: 0;
  animation: ctaPulse 2.5s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

@keyframes ctaPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  60% {
    transform: scale(1.08);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.cta-btn:hover {
  color: #fff;
  box-shadow: 0 0 28px rgba(255, 101, 0, .7), 0 0 60px rgba(255, 101, 0, .3);
  transform: translateY(-2px);
}

.cta-btn:hover::before {
  transform: scaleX(1);
}

.cta-btn:active {
  transform: scale(0.96) translateY(0);
  box-shadow: 0 0 10px rgba(255, 101, 0, .4);
}

/* ══════════════════════════════════════════
   11. RESPONSIVE — TABLET (≤960px)
══════════════════════════════════════════ */
@media (max-width: 960px) {

  .what-sec,
  .pillars,
  .process {
    padding-left: 40px;
    padding-right: 40px;
  }

  .what-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pillars-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .pillars-head p {
    text-align: left;
    max-width: 100%;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
  }

  /* 3-col on tablet for steps */
  .proc-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 16px;
  }

  .proc-steps::before {
    display: none;
  }

  .cta-strip {
    flex-direction: column;
    text-align: center;
  }

  .ticker-wrap::before,
  .ticker-wrap::after {
    width: 80px;
  }
}

/* ══════════════════════════════════════════
   12. RESPONSIVE — MOBILE (≤600px)
══════════════════════════════════════════ */
@media (max-width: 600px) {

  .hero-branding {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-branding__heading {
    font-size: clamp(2.2rem, 12vw, 48px);
  }

  .what-sec,
  .pillars,
  .process {
    padding: 70px 24px;
  }

  .proc-steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cta-strip {
    padding: 60px 24px;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
    padding: 20px 32px;
  }

  .t-item {
    font-size: 18px;
  }

  .ticker-wrap::before,
  .ticker-wrap::after {
    width: 48px;
  }
}

/* ══════════════════════════════════════════
   13. RESPONSIVE — VERY SMALL (≤380px)
══════════════════════════════════════════ */
@media (max-width: 380px) {
  .t-item {
    font-size: 15px;
    padding: 0 12px;
  }

  .hero-branding {
    padding-top: 90px;
  }
}

/* ══════════════════════════════════════════
   14. REDUCED MOTION SUPPORT
      Respects user's OS accessibility setting
══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }

  .hero-branding__eyebrow,
  .hero-branding__heading {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .fi {
    transition: none;
  }

  .cta-btn,
  .cta-btn::before,
  .cta-btn::after {
    animation: none;
    transition: none;
  }
}


/* ══════════════════════════════════════════════
   MARKETING HERO SECTION
   ══════════════════════════════════════════════ */

.hero-marketing {
  min-height: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #000;
  padding: 220px 20px 80px 20px;
}

.hero-marketing__inner {
  max-width: 860px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* Eyebrow */
.hero-marketing__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: none;
  margin: 0;
  opacity: 0;
  transform: translateY(16px);
  animation: brandingFade 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

/* Main heading */
.hero-marketing__heading {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.8rem, 8vw, 90px);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: brandingFade 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.22s forwards;
}

@keyframes brandingFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-marketing {
    padding: 100px 20px 60px;
  }

  .hero-marketing__heading {
    font-size: clamp(2.2rem, 10vw, 60px);
  }
}

@media (max-width: 480px) {
  .hero-marketing {
    padding: 80px 16px 50px;
  }

  .hero-marketing__heading {
    font-size: clamp(1.8rem, 12vw, 40px);
  }
}

/* ============================================================
   DIZORA TBD — MARKETING PAGE SECTIONS (2–7)
   File: marketing-sections.css
   Add to <head>: <link rel="stylesheet" href="marketing-sections.css">
   Fonts required (add to <head> if not already there):
   <link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500&display=swap" rel="stylesheet">
   ============================================================ */


/* ──────────────────────────────────────────
   SHARED UTILITIES
   ────────────────────────────────────────── */

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #ff6500;
  margin-bottom: 20px;
}

.sec-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: #ff6500;
  box-shadow: 0 0 8px #ff6500;
  flex-shrink: 0;
}

/* Scroll-reveal */
.fi {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fi.on {
  opacity: 1;
  transform: translateY(0);
}

/* Colour helpers */
.orange {
  color: #ff6500;
  text-shadow: 0 0 24px rgba(255, 101, 0, 0.5);
}

.blue {
  color: #00f0ff;
  text-shadow: 0 0 24px rgba(0, 240, 255, 0.5);
}

/* Gradient divider */
.mkt-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #00f0ff 30%, #ff6500 70%, transparent);
  opacity: 0.22;
}


/* ──────────────────────────────────────────
   SECTION 2 — NEON TICKER RIBBON
   ────────────────────────────────────────── */

/* ──────────────────────────────────────────
   MARKETING PAGE SPECIFIC RIBBON
   ────────────────────────────────────────── */

.marketing-ribbon-wrap {
  width: 100%;
  overflow: hidden;
  background: transparent;
  padding: 44px 0;
  position: relative;
  display: flex;
  align-items: center;
}

/* Side fades */
.marketing-ribbon-wrap::before,
.marketing-ribbon-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  width: 220px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.marketing-ribbon-wrap::before {
  left: 0;
  background: linear-gradient(to right, #080808 0%, transparent 100%);
}

.marketing-ribbon-wrap::after {
  right: 0;
  background: linear-gradient(to left, #080808 0%, transparent 100%);
}

.marketing-neon-ribbon {
  background: #00d2ff;
  height: 58px;
  display: flex;
  align-items: center;
  width: 100%;
  box-shadow:
    0 0 18px rgba(0, 210, 255, 0.65),
    0 0 40px rgba(0, 210, 255, 0.28),
    0 0 80px rgba(0, 210, 255, 0.12);
  transform: rotate(-1deg);
  position: relative;
}

.marketing-ticker-scroll {
  display: flex;
  white-space: nowrap;
  animation: marketing-scroll-loop 26s linear infinite;
}

.marketing-ticker-scroll:hover {
  animation-play-state: paused;
}

@keyframes marketing-scroll-loop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marketing-ticker-set {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.marketing-tick {
  color: #000;
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0 32px;
  flex-shrink: 0;
}

.t-star {
  margin-left: 10px;
}

/* ──────────────────────────────────────────
   SECTION 3 — WHAT IS MARKETING
   ────────────────────────────────────────── */

.what-sec {
  padding: 100px 60px;
  background: #0d0d0d;
}

.what-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.what-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: #fff;
}

.what-left p {
  font-size: 0.97rem;
  color: rgba(200, 215, 230, 0.6);
  line-height: 1.85;
  margin-bottom: 16px;
  max-width: 480px;
}

.def-box {
  border: 1px solid rgba(255, 101, 0, 0.18);
  padding: 32px 36px;
  background: rgba(255, 101, 0, 0.03);
  position: relative;
}

.def-box::before {
  content: '"';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 6rem;
  line-height: 0.8;
  color: rgba(255, 101, 0, 0.08);
  position: absolute;
  top: 16px;
  left: 20px;
}

.def-box p {
  font-size: 1.05rem;
  color: rgba(220, 230, 245, 0.8);
  line-height: 1.8;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.def-box cite {
  display: block;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ff6500;
  font-style: normal;
}


/* ──────────────────────────────────────────
   SECTION 4 — 3 PILLARS
   ────────────────────────────────────────── */

.pillars {
  padding: 100px 60px;
  background: #080808;
}

.pillars-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.pillars-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 40px;
}

.pillars-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
}

.pillars-head p {
  font-size: 0.92rem;
  color: rgba(200, 215, 230, 0.5);
  max-width: 320px;
  text-align: right;
  line-height: 1.7;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.pillar {
  background: #111;
  padding: 48px 40px 52px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
  cursor: default;
}

.pillar:hover {
  background: #161616;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s;
}

.pillar:nth-child(1)::before {
  background: linear-gradient(90deg, #00f0ff, #0080ff);
}

.pillar:nth-child(2)::before {
  background: linear-gradient(90deg, #ff6500, #ffaa00);
}

.pillar:nth-child(3)::before {
  background: linear-gradient(90deg, #00f0ff, #ff6500);
}

.pillar:hover::before {
  opacity: 1;
}

.pillar-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 28px;
  opacity: 0.05;
  transition: opacity 0.3s;
  user-select: none;
  color: #fff;
}

.pillar:hover .pillar-num {
  opacity: 0.09;
}

.pillar-icon {
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.3s ease;
}

.pillar:hover .pillar-icon {
  transform: scale(1.15) rotate(-5deg);
}

.pillar:nth-child(1) .pillar-icon {
  color: #00f0ff;
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.6));
}

.pillar:nth-child(2) .pillar-icon {
  color: #ff6500;
  filter: drop-shadow(0 0 8px rgba(255, 101, 0, 0.6));
}

.pillar:nth-child(3) .pillar-icon {
  color: #00f0ff;
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.6));
}

.pillar h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  transition: color 0.25s;
}

.pillar:nth-child(1):hover h3 {
  color: #00f0ff;
}

.pillar:nth-child(2):hover h3 {
  color: #ff6500;
}

.pillar:nth-child(3):hover h3 {
  color: #00f0ff;
}

.pillar p {
  font-size: 0.9rem;
  color: rgba(200, 215, 230, 0.55);
  line-height: 1.8;
  position: relative;
  z-index: 1;
  transition: color 0.25s;
}

.pillar:hover p {
  color: rgba(200, 215, 230, 0.8);
}


/* ──────────────────────────────────────────
   SECTION 5 — CHANNELS
   ────────────────────────────────────────── */

.channels {
  padding: 100px 60px;
  background: #0d0d0d;
}

.channels-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.channels-inner>.sec-label {
  display: flex;
}

.channels-inner>h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 56px;
  line-height: 1.0;
  color: #fff;
}

.ch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ch-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: default;
  position: relative;
  overflow: hidden;
  transition: background 0.25s, border-color 0.3s, transform 0.25s;
}

.ch-card:hover {
  background: #181818;
  transform: translateY(-3px);
}

/* Top accent line */
.ch-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.3s;
}

.ch-card:nth-child(odd)::before {
  background: linear-gradient(90deg, #00f0ff, transparent);
}

.ch-card:nth-child(even)::before {
  background: linear-gradient(90deg, #ff6500, transparent);
}

.ch-card:hover::before {
  opacity: 1;
}

/* Glow bg on hover */
.ch-card::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.ch-card:nth-child(odd)::after {
  background: radial-gradient(ellipse at left center, rgba(0, 240, 255, 0.05) 0%, transparent 70%);
}

.ch-card:nth-child(even)::after {
  background: radial-gradient(ellipse at left center, rgba(255, 101, 0, 0.05) 0%, transparent 70%);
}

.ch-card:hover::after {
  opacity: 1;
}

.ch-card:nth-child(odd):hover {
  border-color: rgba(0, 240, 255, 0.25);
}

.ch-card:nth-child(even):hover {
  border-color: rgba(255, 101, 0, 0.25);
}

.ch-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.ch-card:hover .ch-icon {
  transform: scale(1.2) rotate(-5deg);
}

.ch-card:nth-child(odd) .ch-icon {
  color: #00f0ff;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.ch-card:nth-child(even) .ch-icon {
  color: #ff6500;
  text-shadow: 0 0 10px rgba(255, 101, 0, 0.5);
}

.ch-card h4 {
  font-family: 'DM sans', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.25s;
  position: relative;
  z-index: 1;
  line-height: 1.1;
}

.ch-card:nth-child(odd):hover h4 {
  color: #00f0ff;
}

.ch-card:nth-child(even):hover h4 {
  color: #ff6500;
}


/* ──────────────────────────────────────────
   SECTION 6 — PROCESS
   ────────────────────────────────────────── */

.process {
  padding: 100px 60px;
  background: #080808;
}

.process-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.process-inner>.sec-label {
  display: flex;
  margin-bottom: 16px;
}

.process-inner>h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 56px;
  color: #fff;
}

.proc-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}

.proc-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, #00f0ff, #ff6500);
  opacity: 0.2;
  z-index: 0;
}

.proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
  cursor: default;
}

.proc-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
  transition: border-color 0.3s, color 0.3s, box-shadow 0.3s, background 0.3s;
  position: relative;
  z-index: 2;
}

.proc-step:hover .proc-circle {
  border-color: #00f0ff;
  color: #00f0ff;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.35);
  background: rgba(0, 240, 255, 0.06);
}

.proc-step:nth-child(even):hover .proc-circle {
  border-color: #ff6500;
  color: #ff6500;
  box-shadow: 0 0 20px rgba(255, 101, 0, 0.35);
  background: rgba(255, 101, 0, 0.06);
}

.proc-step h4 {
  font-family: 'DM sans', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  transition: color 0.25s;
}

.proc-step:hover h4 {
  color: #fff;
}

.proc-step p {
  font-size: 0.8rem;
  color: rgba(200, 215, 230, 0.4);
  line-height: 1.6;
  transition: color 0.25s;
}

.proc-step:hover p {
  color: rgba(200, 215, 230, 0.7);
}


/* ──────────────────────────────────────────
   SECTION 7 — CTA STRIP WITH BUTTON
   ────────────────────────────────────────── */

.cta-strip {
  padding: 80px 60px;
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 100% at 50% 50%, rgba(0, 240, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cta-strip-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.cta-strip-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 10px;
  color: #fff;
}

.cta-strip-text p {
  font-size: 0.93rem;
  color: rgba(200, 215, 230, 0.5);
}

/* ── THE BUTTON ── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: #ff6500;
  color: #000;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
  /* Base box shadow */
  box-shadow:
    0 0 20px rgba(255, 101, 0, 0.55),
    0 0 45px rgba(255, 101, 0, 0.25),
    0 0 80px rgba(255, 101, 0, 0.10);
  transition:
    background 0.3s ease,
    box-shadow 0.4s ease,
    transform 0.25s ease,
    color 0.3s ease;
  cursor: pointer;
}

/* Hidden glow layers that animate on hover */
.cta-btn-glow-o,
.cta-btn-glow-b {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.cta-btn-glow-o {
  background: radial-gradient(ellipse at center, rgba(255, 101, 0, 0.4) 0%, transparent 70%);
  opacity: 0;
}

.cta-btn-glow-b {
  background: radial-gradient(ellipse at center, rgba(0, 240, 255, 0.18) 0%, transparent 70%);
  opacity: 0;
}

.cta-btn-text {
  position: relative;
  z-index: 1;
}

.cta-btn-arrow {
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.25s ease;
  position: relative;
  z-index: 1;
}

/* Hover state */
.cta-btn:hover {
  background: #ff7a1a;
  transform: translateY(-2px);
  box-shadow:
    0 0 30px rgba(255, 101, 0, 0.80),
    0 0 60px rgba(255, 101, 0, 0.45),
    0 0 100px rgba(255, 101, 0, 0.20),
    0 0 20px rgba(0, 240, 255, 0.20),
    0 0 50px rgba(0, 240, 255, 0.10);
}

.cta-btn:hover .cta-btn-glow-o {
  opacity: 1;
}

.cta-btn:hover .cta-btn-glow-b {
  opacity: 1;
}

.cta-btn:hover .cta-btn-arrow {
  transform: translateX(4px);
}

/* Active / click */
.cta-btn:active {
  transform: translateY(0px);
  box-shadow:
    0 0 20px rgba(255, 101, 0, 0.6),
    0 0 40px rgba(255, 101, 0, 0.25);
}


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 960px)
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 960px) {

  /* Section 3 */
  .what-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .what-left p {
    max-width: 100%;
  }

  /* Section 4 */
  .pillars-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .pillars-head p {
    text-align: left;
    max-width: 100%;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
  }

  /* Section 5 */
  .ch-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Section 6 */
  .proc-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .proc-steps::before {
    display: none;
  }

  /* Section 7 */
  .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
  }
}


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 600px)
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 600px) {

  /* Ticker */
  .mkt-ticker-wrap::before,
  .mkt-ticker-wrap::after {
    width: 80px;
  }

  .mkt-neon-ribbon {
    height: 48px;
    transform: rotate(-0.5deg);
  }

  .mkt-tick {
    font-size: 17px;
    padding: 0 20px;
  }

  /* Sections — reduce side padding */
  .what-sec,
  .pillars,
  .channels,
  .process,
  .cta-strip {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  /* Section 4 */
  .pillar {
    padding: 36px 28px 40px;
  }

  /* Section 5 */
  .ch-grid {
    grid-template-columns: 1fr;
  }

  /* Section 6 */
  .proc-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Section 7 */
  .cta-strip {
    padding: 60px 24px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
    font-size: 1rem;
  }
}


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 400px)
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 400px) {

  .pillars-head h2,
  .channels-inner>h2,
  .process-inner>h2 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .what-title {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }
}

/* ══════════════════════════════════════════════════════════════
   WEBSITES HERO SECTION
   ══════════════════════════════════════════════════════════════ */


.hero-websites {
  min-height: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #000;
  padding: 220px 20px 80px 20px;
}

.hero-websites__inner {
  max-width: 860px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* Eyebrow */
.hero-websites__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: none;
  margin: 0;
  opacity: 0;
  transform: translateY(16px);
  animation: brandingFade 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

/* Main heading */
.hero-websites__heading {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.8rem, 8vw, 90px);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: brandingFade 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.22s forwards;
}

@keyframes brandingFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-websites {
    padding: 100px 20px 60px;
  }

  .hero-websites__heading {
    font-size: clamp(2.2rem, 10vw, 60px);
  }
}

@media (max-width: 480px) {
  .hero-websites {
    padding: 80px 16px 50px;
  }

  .hero-websites__heading {
    font-size: clamp(1.8rem, 12vw, 40px);
  }
}

/* ============================================================
   DIZORA TBD — websites-sections.css
   Add <link rel="stylesheet" href="websites-sections.css">
   inside your <head> tag.
   ============================================================ */

/* ─── SHARED UTILITIES ─────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #00f0ff 30%, #ff6500 70%, transparent);
  opacity: 0.25;
}

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #ff6500;
  margin-bottom: 20px;
}

.sec-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: #ff6500;
  box-shadow: 0 0 8px #ff6500;
  flex-shrink: 0;
}

/* ─── SCROLL FADE-IN ───────────────────────────────────────── */
.fi {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fi.on {
  opacity: 1;
  transform: translateY(0);
}

/* ─── WEBSITE RIBBON TICKER ───────────────────────────────── */
.website-ribbon-wrap {
  width: 100%;
  overflow: hidden;
  background: transparent;
  padding: 44px 0;
  position: relative;
  display: flex;
  align-items: center;
}

/* Side fades */
.website-ribbon-wrap::before,
.website-ribbon-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  width: 220px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.website-ribbon-wrap::before {
  left: 0;
  background: linear-gradient(to right, #080808 0%, transparent 100%);
}

.website-ribbon-wrap::after {
  right: 0;
  background: linear-gradient(to left, #080808 0%, transparent 100%);
}

.website-neon-ribbon {
  background: #00d2ff;
  height: 58px;
  display: flex;
  align-items: center;
  width: 100%;
  box-shadow:
    0 0 18px rgba(0, 210, 255, 0.65),
    0 0 40px rgba(0, 210, 255, 0.28),
    0 0 80px rgba(0, 210, 255, 0.12);
  transform: rotate(-1deg);
  position: relative;
  overflow: hidden;
}

.website-ticker-scroll {
  display: flex;
  white-space: nowrap;
  animation: website-scroll 26s linear infinite;
}

.website-ticker-scroll:hover {
  animation-play-state: paused;
}

@keyframes website-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.website-ticker-set {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.website-tick {
  color: #000;
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0 32px;
  flex-shrink: 0;
}

.t-star {
  margin-left: 10px;
}

/* ─── SECTION 2: THREE PILLARS ─────────────────────────────── */
.pillars {
  padding: 100px 60px;
  background: #080808;
}

.pillars-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.pillars-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 40px;
}

.pillars-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pillars-head h2 .blue {
  color: #00f0ff;
  text-shadow: 0 0 24px rgba(0, 240, 255, 0.5);
}

.pillars-head>p {
  font-size: 0.92rem;
  color: rgba(200, 215, 230, 0.5);
  max-width: 320px;
  text-align: right;
  line-height: 1.7;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.pillar {
  background: #111;
  padding: 48px 40px 52px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
  cursor: default;
}

.pillar:hover {
  background: #161616;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s;
}

.pillar:nth-child(1)::before {
  background: linear-gradient(90deg, #00f0ff, #0080ff);
}

.pillar:nth-child(2)::before {
  background: linear-gradient(90deg, #ff6500, #ffaa00);
}

.pillar:nth-child(3)::before {
  background: linear-gradient(90deg, #00f0ff, #ff6500);
}

.pillar:hover::before {
  opacity: 1;
}

.pillar-num {
  font-family: 'DM sans', sans-serif;
  font-size: 5rem;
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 28px;
  opacity: 0.05;
  transition: opacity 0.3s;
  user-select: none;
}

.pillar:hover .pillar-num {
  opacity: 0.09;
}

.pillar-icon {
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.3s ease;
}

.pillar:hover .pillar-icon {
  transform: scale(1.15) rotate(-5deg);
}

.pillar:nth-child(1) .pillar-icon {
  color: #00f0ff;
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.6));
}

.pillar:nth-child(2) .pillar-icon {
  color: #ff6500;
  filter: drop-shadow(0 0 8px rgba(255, 101, 0, 0.6));
}

.pillar:nth-child(3) .pillar-icon {
  color: #00f0ff;
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.6));
}

.pillar h3 {
  font-family: 'DM sans', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  transition: color 0.25s;
}

.pillar:nth-child(1):hover h3 {
  color: #00f0ff;
}

.pillar:nth-child(2):hover h3 {
  color: #ff6500;
}

.pillar:nth-child(3):hover h3 {
  color: #00f0ff;
}

.pillar p {
  font-size: 0.9rem;
  color: rgba(200, 215, 230, 0.55);
  line-height: 1.8;
  position: relative;
  z-index: 1;
  transition: color 0.25s;
}

.pillar:hover p {
  color: rgba(200, 215, 230, 0.8);
}

/* ─── SECTION 3: TYPES ──────────────────────────────────────── */
.types {
  padding: 100px 60px;
  background: #0d0d0d;
}

.types-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.types-inner>.sec-label {
  display: flex;
}

.types-inner>h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 56px;
}

.types-inner>h2 .orange {
  color: #ff6500;
  text-shadow: 0 0 24px rgba(255, 101, 0, 0.45);
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.type-card {
  background: #111;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.22s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.type-card:hover {
  background: #161616;
}

.type-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.3s;
}

.type-card:nth-child(odd)::after {
  background: linear-gradient(90deg, #00f0ff, transparent);
}

.type-card:nth-child(even)::after {
  background: linear-gradient(90deg, #ff6500, transparent);
}

.type-card:hover::after {
  opacity: 1;
}

.type-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.type-card:nth-child(odd) .type-icon {
  color: #00f0ff;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.type-card:nth-child(even) .type-icon {
  color: #ff6500;
  text-shadow: 0 0 10px rgba(255, 101, 0, 0.5);
}

.type-card h4 {
  font-family: 'DM sans', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.25s;
}

.type-card:nth-child(odd):hover h4 {
  color: #00f0ff;
}

.type-card:nth-child(even):hover h4 {
  color: #ff6500;
}

.type-card p {
  font-size: 0.88rem;
  color: rgba(200, 215, 230, 0.5);
  line-height: 1.75;
  margin: 0;
  transition: color 0.22s;
}

.type-card:hover p {
  color: rgba(200, 215, 230, 0.8);
}

/* ─── SECTION 4: PROCESS ────────────────────────────────────── */
.process {
  padding: 100px 60px;
  background: #0d0d0d;
}

.process-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.process-inner>.sec-label {
  display: flex;
  margin-bottom: 16px;
}

.process-inner>h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 56px;
}

.process-inner>h2 .blue {
  color: #00f0ff;
  text-shadow: 0 0 24px rgba(0, 240, 255, 0.45);
}

.proc-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}

.proc-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, #00f0ff, #ff6500);
  opacity: 0.2;
  z-index: 0;
}

.proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
  cursor: default;
}

.proc-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM sans', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
  transition: border-color 0.3s, color 0.3s, box-shadow 0.3s, background 0.3s;
  position: relative;
  z-index: 2;
}

.proc-step:hover .proc-circle {
  border-color: #00f0ff;
  color: #00f0ff;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.35);
  background: rgba(0, 240, 255, 0.06);
}

.proc-step:nth-child(even):hover .proc-circle {
  border-color: #ff6500;
  color: #ff6500;
  box-shadow: 0 0 20px rgba(255, 101, 0, 0.35);
  background: rgba(255, 101, 0, 0.06);
}

.proc-step h4 {
  font-family: 'DM sans', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  transition: color 0.25s;
}

.proc-step:hover h4 {
  color: #fff;
}

.proc-step p {
  font-size: 0.8rem;
  color: rgba(200, 215, 230, 0.4);
  line-height: 1.6;
  transition: color 0.25s;
}

.proc-step:hover p {
  color: rgba(200, 215, 230, 0.7);
}

/* ─── SECTION 5: TECH STACK ─────────────────────────────────── */
.tech {
  padding: 80px 60px;
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tech-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.tech-inner>.sec-label {
  display: flex;
  margin-bottom: 16px;
}

.tech-inner>p {
  font-size: 0.95rem;
  color: rgba(200, 215, 230, 0.5);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.7;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid rgba(0, 240, 255, 0.18);
  font-family: 'dm sans', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(200, 215, 230, 0.5);
  cursor: default;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.badge:hover {
  border-color: #00f0ff;
  color: #00f0ff;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.18);
}

.badge.o {
  border-color: rgba(255, 101, 0, 0.18);
}

.badge.o:hover {
  border-color: #ff6500;
  color: #ff6500;
  box-shadow: 0 0 12px rgba(255, 101, 0, 0.18);
}

/* ─── CTA STRIP ─────────────────────────────────────────────── */
.cta-strip {
  padding: 80px 60px;
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 100% at 50% 50%, rgba(0, 240, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cta-strip-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-strip-text h3 {
  font-family: 'dm sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 10px;
}

.cta-strip-text h3 .orange {
  color: #ff6500;
  text-shadow: 0 0 24px rgba(255, 101, 0, 0.5);
}

.cta-strip-text p {
  font-size: 0.93rem;
  color: rgba(200, 215, 230, 0.5);
}

/* ─── DZ BUTTON ─────────────────────────────────────────────── */
/* Solid orange block — matches screenshot exactly */
.dz-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 20px 40px;
  background: #ff6500;
  color: #fff;
  font-family: 'dm sans', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  white-space: nowrap;
}

.dz-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity 0.2s;
}

.dz-btn:hover {
  background: #e55a00;
  box-shadow: 0 0 28px rgba(255, 101, 0, 0.45);
  transform: translateY(-1px);
}

.dz-btn:hover::before {
  opacity: 1;
}

.dz-btn:active {
  transform: translateY(0);
}

.dz-btn-arrow {
  font-size: 1.1rem;
  transition: transform 0.2s;
}

.dz-btn:hover .dz-btn-arrow {
  transform: translateX(4px);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .pillars-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .pillars-head>p {
    text-align: left;
    max-width: 100%;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .type-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proc-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }

  .proc-steps::before {
    display: none;
  }

  .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .type-grid {
    grid-template-columns: 1fr;
  }

  .proc-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .ticker-text {
    font-size: 18px;
    padding: 0 32px;
  }

  .dizora-ticker-container::before,
  .dizora-ticker-container::after {
    width: 80px;
  }
}

@media (max-width: 600px) {

  .pillars,
  .types,
  .process,
  .tech,
  .cta-strip {
    padding-left: 24px;
    padding-right: 24px;
  }

  .pillars {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .types {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .process {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .proc-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .dz-btn {
    width: 100%;
    justify-content: center;
    padding: 18px 32px;
  }

  .neon-ribbon {
    height: 50px;
  }

  .ticker-text {
    font-size: 16px;
    padding: 0 24px;
  }

  .cta-strip-text h3 {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }
}

/* ════════════════════════════════════════════════════
   SOFTWARE.CSS
   Fixes: page load overlay, nav mobile animation,
   dropdown smooth open/close, scroll polish,
   reduced-motion, full responsive coverage
   ════════════════════════════════════════════════════ */


/* ══════════════════════════════════════════
   GLOBAL SMOOTH SCROLL + BOX SIZING
══════════════════════════════════════════ */
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}


/* ══════════════════════════════════════════
   PAGE LOAD OVERLAY — eliminates flash/glitch
   on page entry (navigating from other pages)
══════════════════════════════════════════ */
.page-overlay {
  position: fixed;
  inset: 0;
  background: #080808;
  z-index: 9999;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-overlay.page-loaded {
  opacity: 0;
}

/* Prevent FOUC — content visible only after overlay fades */
body.page-loading {
  overflow: hidden;
}


/* ══════════════════════════════════════════
   HEADER — Smooth mobile nav slide-down
══════════════════════════════════════════ */

/* Mobile nav slide + fade */
@media (max-width: 768px) {
  .nav {
    /* Override existing display:none/flex pattern with smooth transition */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
      max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.28s ease;
    /* Force block layout for mobile */
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0;
    z-index: 999;
    pointer-events: none;
  }

  .nav.active {
    max-height: 500px;
    opacity: 1;
    pointer-events: auto;
    padding: 20px 0 24px;
  }

  .nav a {
    padding: 12px 28px;
    width: 100%;
    display: block;
    opacity: 0;
    transform: translateX(-12px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      color 0.2s;
  }

  .nav.active a {
    opacity: 1;
    transform: translateX(0);
  }

  /* Stagger nav links in */
  .nav.active a:nth-child(1) {
    transition-delay: 0.05s;
  }

  .nav.active a:nth-child(2) {
    transition-delay: 0.10s;
  }

  .nav.active a:nth-child(3) {
    transition-delay: 0.15s;
  }

  /* dropdown */
  .nav.active a:nth-child(4) {
    transition-delay: 0.20s;
  }

  .nav.active a:nth-child(5) {
    transition-delay: 0.25s;
  }

  /* Hamburger → X transition */
  .menu-toggle {
    transition: transform 0.25s ease, color 0.2s;
  }

  .menu-toggle:hover {
    color: #00f0ff;
  }

  /* Dropdown inside mobile nav */
  .dropdown {
    width: 100%;
  }

  .dropdown-toggle {
    padding: 12px 28px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }
}

/* ══════════════════════════════════════════
   SOFTWARE — HERO SECTION
══════════════════════════════════════════ */
.hero-software {
  min-height: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #000;
  padding: 220px 20px 80px 20px;
}

.hero-software__inner {
  max-width: 860px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-software__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: none;
  margin: 0;
  opacity: 0;
  transform: translateY(16px);
  animation: softFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

.hero-software__heading {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.8rem, 8vw, 90px);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: softFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}

/* Delay hero animations to sync with page overlay fade */
@keyframes softFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Legacy animation name alias */
@keyframes brandingFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ══════════════════════════════════════════
   NEON RIBBON TICKER
══════════════════════════════════════════ */
/* Unique to Software Page - No clash with Marketing */
.software-ribbon-wrap {
  width: 100%;
  overflow: hidden;
  padding: 44px 0;
  position: relative;
  display: flex;
  align-items: center;
}

.software-neon-ribbon {
  background: #00d2ff;
  height: 58px;
  display: flex;
  align-items: center;
  width: 100%;
  box-shadow:
    0 0 18px rgba(0, 210, 255, 0.65),
    0 0 40px rgba(0, 210, 255, 0.28),
    0 0 80px rgba(0, 210, 255, 0.12);
  transform: rotate(-1deg);
  position: relative;
}

.software-ticker-scroll {
  display: flex;
  white-space: nowrap;
  animation: software-scroll-anim 26s linear infinite;
}

@keyframes software-scroll-anim {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.software-ticker-set {
  display: inline-flex;
  align-items: center;
}

.software-tick {
  color: #000;
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0 32px;
}

/* ══════════════════════════════════════════
   SECTION 2 — PRODUCTS GRID
══════════════════════════════════════════ */
.products {
  padding: 100px 60px;
  background: #080808;
}

.products-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.products-inner>.sec-label {
  display: flex;
}

.products-inner>h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 56px;
  line-height: 1.05;
}

.products-inner>h2 .orange {
  color: #ff6500;
  text-shadow: 0 0 24px rgba(255, 101, 0, 0.45);
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.prod-card {
  background: #111;
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
  cursor: default;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prod-card:hover {
  background: #161616;
}

.prod-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s;
}

.prod-card:nth-child(1)::before {
  background: linear-gradient(90deg, #00f0ff, #0080ff);
}

.prod-card:nth-child(2)::before {
  background: linear-gradient(90deg, #ff6500, #ffaa00);
}

.prod-card:nth-child(3)::before {
  background: linear-gradient(90deg, #ff6500, #ff9900);
}

.prod-card:nth-child(4)::before {
  background: linear-gradient(90deg, #00f0ff, #00ff88);
}

.prod-card:nth-child(5)::before {
  background: linear-gradient(90deg, #ff6500, #ff6500);
}

.prod-card:nth-child(6)::before {
  background: linear-gradient(90deg, #00f0ff, #ff6500);
}

.prod-card:hover::before {
  opacity: 1;
}

.prod-watermark {
  position: absolute;
  bottom: -10px;
  right: 20px;
  font-family: 'dm sans', sans-serif;
  font-size: 7rem;
  line-height: 1;
  opacity: 0.04;
  user-select: none;
  transition: opacity 0.3s;
  letter-spacing: 0.02em;
}

.prod-card:hover .prod-watermark {
  opacity: 0.07;
}

.prod-icon {
  font-size: 2rem;
  line-height: 1;
  transition: transform 0.3s;
}

.prod-card:hover .prod-icon {
  transform: scale(1.1) rotate(-4deg);
}

.prod-card:nth-child(odd) .prod-icon {
  color: #00f0ff;
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.6));
}

.prod-card:nth-child(even) .prod-icon {
  color: #ff6500;
  filter: drop-shadow(0 0 8px rgba(255, 101, 0, 0.6));
}

.prod-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  font-weight: 100;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.25s;
}

.prod-card:nth-child(odd):hover h3 {
  color: #00f0ff;
}

.prod-card:nth-child(even):hover h3 {
  color: #ff6500;
}

.prod-card p {
  font-size: 0.92rem;
  color: rgba(200, 215, 230, 0.55);
  line-height: 1.8;
  z-index: 1;
  position: relative;
  transition: color 0.25s;
}

.prod-card:hover p {
  color: rgba(200, 215, 230, 0.85);
}

.prod-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

.prod-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(200, 215, 230, 0.45);
  transition: border-color 0.2s, color 0.2s;
}

.prod-card:hover .prod-tag {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(200, 215, 230, 0.7);
}


/* ══════════════════════════════════════════
   SECTION 3 — MOBILE APPS
══════════════════════════════════════════ */
.mobile {
  padding: 100px 60px;
  background: #0d0d0d;
  position: relative;
  overflow: hidden;
}

.mobile::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 101, 0, 0.06) 0%, transparent 65%);
  top: -200px;
  right: -200px;
  pointer-events: none;
  animation: breathe 10s ease-in-out infinite alternate;
}

.mobile-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.mobile-left>.sec-label {
  display: flex;
}

.mobile-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.mobile-title .orange {
  color: #ff6500;
  text-shadow: 0 0 28px rgba(255, 101, 0, 0.55);
}

.mobile-left>p {
  font-size: 0.97rem;
  color: rgba(200, 215, 230, 0.6);
  line-height: 1.85;
  margin-bottom: 16px;
  max-width: 480px;
}

/* Phone mockup */
.phone-mockup {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 20px;
  position: relative;
  z-index: 2;
}

.phone {
  width: 220px;
  background: #111;
  border: 2px solid rgba(0, 240, 255, 0.2);
  border-radius: 36px;
  padding: 20px 16px;
  box-shadow:
    0 0 60px rgba(0, 240, 255, 0.1),
    0 0 100px rgba(0, 240, 255, 0.05);
  position: relative;
  animation: phoneFloat 4s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes phoneFloat {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-16px);
  }
}

.phone-notch {
  width: 60px;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  margin: 0 auto 16px;
}

.phone-screen {
  background: #0a0a0a;
  border-radius: 20px;
  padding: 16px 12px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.phone-bar {
  height: 8px;
  border-radius: 4px;
  background: rgba(0, 240, 255, 0.15);
}

.phone-bar.w80 {
  width: 80%;
}

.phone-bar.w60 {
  width: 60%;
  background: rgba(255, 101, 0, 0.15);
}

.phone-bar.w90 {
  width: 90%;
}

.phone-bar.w50 {
  width: 50%;
  background: rgba(255, 101, 0, 0.15);
}

.phone-card-mock {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.phone-card-mock .phone-bar {
  height: 6px;
}

.phone-btn-mock {
  margin-top: 8px;
  height: 32px;
  border-radius: 6px;
  background: rgba(0, 240, 255, 0.12);
  border: 1px solid rgba(0, 240, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: rgba(0, 240, 255, 0.5);
}

/* App type list */
.app-types {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin-top: 36px;
}

.app-type {
  background: #111;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: background 0.22s, padding-left 0.25s;
  cursor: default;
}

.app-type:hover {
  background: #161616;
  padding-left: 40px;
}

.app-type-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.app-type:hover .app-type-icon {
  transform: scale(1.2);
}

.app-type:nth-child(odd) .app-type-icon {
  color: #00f0ff;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.app-type:nth-child(even) .app-type-icon {
  color: #ff6500;
  text-shadow: 0 0 10px rgba(255, 101, 0, 0.5);
}

.app-type-body h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.07em;
  font-weight: 100;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.22s;
}

.app-type:nth-child(odd):hover h4 {
  color: #00f0ff;
}

.app-type:nth-child(even):hover h4 {
  color: #ff6500;
}

.app-type-body p {
  font-size: 0.85rem;
  color: rgba(200, 215, 230, 0.5);
  line-height: 1.6;
  margin: 4px 0 0;
  transition: color 0.22s;
}

.app-type:hover .app-type-body p {
  color: rgba(200, 215, 230, 0.8);
}


/* ══════════════════════════════════════════
   SECTION 4 — WHY CUSTOM PILLARS
══════════════════════════════════════════ */
.pillars {
  padding: 100px 60px;
  background: #080808;
}

.pillars-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.pillars-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 40px;
}

.pillars-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pillars-head h2 .blue {
  color: #00f0ff;
  text-shadow: 0 0 24px rgba(0, 240, 255, 0.5);
}

.pillars-head p {
  font-size: 0.92rem;
  color: rgba(200, 215, 230, 0.5);
  max-width: 320px;
  text-align: right;
  line-height: 1.7;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.pillar {
  background: #111;
  padding: 48px 40px 52px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
  cursor: default;
}

.pillar:hover {
  background: #161616;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s;
}

.pillar:nth-child(1)::before {
  background: linear-gradient(90deg, #00f0ff, #0080ff);
}

.pillar:nth-child(2)::before {
  background: linear-gradient(90deg, #ff6500, #ffaa00);
}

.pillar:nth-child(3)::before {
  background: linear-gradient(90deg, #00f0ff, #ff6500);
}

.pillar:hover::before {
  opacity: 1;
}

.pillar-num {
  font-family: 'dm sans', sans-serif;
  font-size: 5rem;
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 28px;
  opacity: 0.05;
  transition: opacity 0.3s;
  user-select: none;
}

.pillar:hover .pillar-num {
  opacity: 0.09;
}

.pillar-icon {
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.3s ease;
}

.pillar:hover .pillar-icon {
  transform: scale(1.15) rotate(-5deg);
}

.pillar:nth-child(1) .pillar-icon {
  color: #00f0ff;
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.6));
}

.pillar:nth-child(2) .pillar-icon {
  color: #ff6500;
  filter: drop-shadow(0 0 8px rgba(255, 101, 0, 0.6));
}

.pillar:nth-child(3) .pillar-icon {
  color: #00f0ff;
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.6));
}

.pillar h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  font-weight: 100;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  transition: color 0.25s;
}

.pillar:nth-child(1):hover h3 {
  color: #00f0ff;
}

.pillar:nth-child(2):hover h3 {
  color: #ff6500;
}

.pillar:nth-child(3):hover h3 {
  color: #00f0ff;
}

.pillar p {
  font-size: 0.9rem;
  color: rgba(200, 215, 230, 0.55);
  line-height: 1.8;
  position: relative;
  z-index: 1;
  transition: color 0.25s;
}

.pillar:hover p {
  color: rgba(200, 215, 230, 0.8);
}


/* ══════════════════════════════════════════
   BENEFITS
══════════════════════════════════════════ */
.benefits {
  padding: 100px 60px;
  background: #0d0d0d;
}

.benefits-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.ben-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.4);
}

.ben-title span {
  color: #fff;
}

.ben-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.ben {
  background: #0d0d0d;
  padding: 36px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: background 0.22s;
  cursor: default;
}

.ben:hover {
  background: #111;
}

.ben-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
  transition: box-shadow 0.3s;
}

.ben:nth-child(1) .ben-dot,
.ben:nth-child(3) .ben-dot {
  background: #00f0ff;
}

.ben:nth-child(2) .ben-dot {
  background: #ff6500;
}

.ben-content h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  font-weight: 100;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

.ben-content p {
  font-size: 0.88rem;
  color: rgba(200, 215, 230, 0.55);
  line-height: 1.7;
  margin: 0;
  transition: color 0.22s;
}

.ben:hover .ben-content p {
  color: rgba(200, 215, 230, 0.8);
}


/* ══════════════════════════════════════════
   PROCESS — 6 STEPS
══════════════════════════════════════════ */
.process {
  padding: 100px 60px;
  background: #080808;
}

.process-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.process-inner>.sec-label {
  display: flex;
  margin-bottom: 16px;
}

.process-inner>h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 00;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 56px;
  line-height: 1.05;
}

.process-inner>h2 .orange {
  color: #ff6500;
  text-shadow: 0 0 24px rgba(255, 101, 0, 0.45);
}

.proc-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
}

.proc-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, #00f0ff, #ff6500);
  opacity: 0.2;
  z-index: 0;
}

.proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px;
  position: relative;
  z-index: 1;
  cursor: default;
}

.proc-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
  transition: border-color 0.3s, color 0.3s, box-shadow 0.3s, background 0.3s;
  position: relative;
  z-index: 2;
}

.proc-step:hover .proc-circle {
  border-color: #00f0ff;
  color: #00f0ff;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.35);
  background: rgba(0, 240, 255, 0.06);
}

.proc-step:nth-child(even):hover .proc-circle {
  border-color: #ff6500;
  color: #ff6500;
  box-shadow: 0 0 20px rgba(255, 101, 0, 0.35);
  background: rgba(255, 101, 0, 0.06);
}

.proc-step h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  font-weight: 100;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  transition: color 0.25s;
}

.proc-step:hover h4 {
  color: #fff;
}

.proc-step p {
  font-size: 0.78rem;
  color: rgba(200, 215, 230, 0.4);
  line-height: 1.6;
  transition: color 0.25s;
}

.proc-step:hover p {
  color: rgba(200, 215, 230, 0.7);
}


/* ══════════════════════════════════════════
   TECH STACK
══════════════════════════════════════════ */
.tech {
  padding: 80px 60px;
  background: #0d0d0d;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tech-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.tech-inner>.sec-label {
  display: flex;
  margin-bottom: 16px;
}

.tech-inner>p {
  font-size: 0.95rem;
  color: rgba(200, 215, 230, 0.5);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.7;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid rgba(0, 240, 255, 0.18);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(200, 215, 230, 0.5);
  cursor: default;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.badge:hover {
  border-color: #00f0ff;
  color: #00f0ff;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.18);
}

.badge.o {
  border-color: rgba(255, 101, 0, 0.18);
}

.badge.o:hover {
  border-color: #ff6500;
  color: #ff6500;
  box-shadow: 0 0 12px rgba(255, 101, 0, 0.18);
}


/* ══════════════════════════════════════════
   CTA STRIP
══════════════════════════════════════════ */
.cta-strip {
  padding: 80px 60px;
  background: #080808;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 100% at 50% 50%, rgba(0, 240, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cta-strip::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #00f0ff, transparent);
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.6);
}

.cta-strip-text {
  position: relative;
  z-index: 2;
}

.cta-strip-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 10px;
}

.cta-strip-text h3 .blue {
  color: #00f0ff;
  text-shadow: 0 0 24px rgba(0, 240, 255, 0.5);
}

.cta-strip-text p {
  font-size: 0.93rem;
  color: rgba(200, 215, 230, 0.5);
}

.cta-btn {
  flex-shrink: 0;
  display: inline-block;
  padding: 20px 52px;
  background: #ff6500;
  color: #080808;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.25s;
  box-shadow: 0 0 28px rgba(255, 101, 0, 0.4);
  z-index: 2;
  border: none;
  cursor: pointer;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transition: left 0.45s ease;
}

.cta-btn:hover::before {
  left: 160%;
}

.cta-btn:hover {
  box-shadow: 0 0 55px rgba(255, 101, 0, 0.65);
  transform: translateY(-3px);
}


/* ══════════════════════════════════════════
   SCROLL FADE-IN (.fi)
══════════════════════════════════════════ */
.fi {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fi.on {
  opacity: 1;
  transform: translateY(0);
}

/* Breathe keyframe */
@keyframes breathe {
  from {
    transform: scale(1);
    opacity: 0.6;
  }

  to {
    transform: scale(1.12);
    opacity: 1;
  }
}


/* ══════════════════════════════════════════
   REDUCED MOTION — accessibility
══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

  .fi,
  .hero-software__eyebrow,
  .hero-software__heading {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  .ticker-scroll {
    animation: none;
  }

  .phone {
    animation: none;
  }

  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}


/* ══════════════════════════════════════════
   RESPONSIVE — LARGE TABLET (≤1024px)
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .proc-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .proc-steps::before {
    display: none;
  }

  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (≤960px)
══════════════════════════════════════════ */
@media (max-width: 960px) {
  .mobile-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .phone-mockup {
    display: none;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .ben-row {
    grid-template-columns: 1fr;
  }

  .pillars-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .pillars-head p {
    text-align: left;
    max-width: 100%;
  }

  .cta-strip {
    flex-direction: column;
    text-align: center;
    padding: 60px 40px;
  }

  .cta-strip::after {
    display: none;
  }

  .dizora-ticker-container::before,
  .dizora-ticker-container::after {
    width: 100px;
  }
}


/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
   Header nav is handled by .nav class above
══════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-software {
    padding: 100px 20px 60px;
  }

  .hero-software__heading {
    font-size: clamp(2.2rem, 10vw, 60px);
  }

  .products,
  .mobile,
  .pillars,
  .benefits,
  .process,
  .tech {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .cta-strip {
    padding: 60px 24px;
  }

  .prod-grid {
    grid-template-columns: 1fr;
  }

  .proc-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .proc-steps::before {
    display: none;
  }
}


/* ══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤600px)
══════════════════════════════════════════ */
@media (max-width: 600px) {

  .products,
  .mobile,
  .pillars,
  .benefits,
  .process,
  .tech {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .cta-strip {
    padding: 60px 20px;
  }

  .prod-card {
    padding: 36px 24px;
  }

  .pillar {
    padding: 36px 24px 40px;
  }

  .ben {
    padding: 28px 24px;
  }

  .app-type {
    padding: 22px 20px;
    gap: 14px;
  }

  .neon-ribbon {
    height: 48px;
    transform: rotate(-1deg);
  }

  .ticker-text {
    font-size: 16px;
    padding: 0 18px;
  }

  .dizora-ticker-container::before,
  .dizora-ticker-container::after {
    width: 60px;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
    padding: 18px 32px;
  }

  .pillars-head {
    margin-bottom: 36px;
  }

  .mobile-inner {
    gap: 36px;
  }

  .hero-software {
    padding: 90px 16px 50px;
  }

  .hero-software__heading {
    font-size: clamp(1.9rem, 12vw, 44px);
  }
}


/* ══════════════════════════════════════════
   RESPONSIVE — VERY SMALL (≤360px)
══════════════════════════════════════════ */
@media (max-width: 360px) {
  .proc-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .proc-steps::before {
    display: none;
  }

  .prod-card {
    padding: 28px 18px;
  }

  .cta-strip {
    padding: 50px 16px;
  }

  .badge {
    padding: 8px 14px;
    font-size: 0.88rem;
  }

  .tech-badges {
    gap: 8px;
  }
}


/* ============================================================
   OUR WORKS — our-works.css
   Theme: Black / Neon Blue (#00f0ff) / Neon Orange (#ff6500)
   Fonts: Bebas Neue (headings) | DM Sans (body)
   ============================================================ */

:root {
  --ow-bg: #080808;
  --ow-bg-card: #0e0e0e;
  --ow-border: rgba(255, 255, 255, 0.07);
  --ow-blue: #00f0ff;
  --ow-orange: #ff6500;
  --ow-white: #f0f0f0;
  --ow-muted: rgba(240, 240, 240, 0.45);
  --ow-font-head: 'Bebas Neue', sans-serif;
  --ow-font-body: 'DM Sans', sans-serif;
  --ow-radius: 16px;
  --ow-transition: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ── SECTION WRAPPER ── */
.ow-section {
  background: var(--ow-bg);
  padding: 160px 0 80px;
  overflow: hidden;
  position: relative;
  font-family: var(--ow-font-body);
}

.ow-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── HERO ── */
.ow-hero {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60 40px 60px;
  text-align: center;
}

.ow-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ow-font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ow-blue);
  margin-bottom: 24px;
}

.ow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ow-blue);
  display: inline-block;
  animation: ow-pulse 2s ease-in-out infinite;
}

@keyframes ow-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

/* ── TITLE with letter animation ── */
.ow-hero__title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(64px, 10vw, 130px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--ow-white);
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
}

.ow-title-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}

.ow-title-accent {
  color: transparent;
  -webkit-text-stroke: 2px var(--ow-orange);
  text-stroke: 2px var(--ow-orange);
  filter: drop-shadow(0 0 30px rgba(255, 101, 0, 0.45));
}

.ow-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: ow-charIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes ow-charIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ow-char-space {
  display: inline-block;
  width: 0.28em;
}

.ow-hero__sub {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--ow-muted);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(16px);
  animation: ow-fadeUp 0.6s ease 1.2s forwards;
}

@keyframes ow-fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ow-service-labels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(16px);
  animation: ow-fadeUp 0.6s ease 1.4s forwards;
}

.ow-service-label {
  font-family: var(--ow-font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 24px;
  border-radius: 100px;
  border: 1px solid var(--ow-border);
  color: var(--ow-muted);
  background: rgba(255, 255, 255, 0.02);
  cursor: default;
  user-select: none;
  transition: color 0.3s ease, border-color 0.3s ease,
    background 0.3s ease, box-shadow 0.3s ease;
}

.ow-service-label:hover {
  color: var(--ow-blue);
  border-color: rgba(0, 240, 255, 0.5);
  background: rgba(0, 240, 255, 0.07);
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.18);
}

/* ── WORKS GRID ── */
.ow-grid {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── CARD ── */
.ow-card {
  position: relative;
  background: var(--ow-bg-card);
  border: 1px solid var(--ow-border);
  border-radius: var(--ow-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--ow-transition), border-color var(--ow-transition);
  cursor: default;
  opacity: 0;
  transform: translateY(40px);
}

.ow-card.ow-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    border-color var(--ow-transition),
    box-shadow var(--ow-transition);
}

.ow-card:hover {
  border-color: rgba(0, 240, 255, 0.3);
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 60px rgba(0, 240, 255, 0.08);
}

.ow-card__number {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--ow-font-head);
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color var(--ow-transition);
}

.ow-card:hover .ow-card__number {
  color: rgba(0, 240, 255, 0.07);
}

.ow-card__logo-zone {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 270px;
  /* padding: 32px 28px; */
  border-bottom: 1px solid var(--ow-border);
  background: rgba(255, 255, 255, 0.02);
  transition: background var(--ow-transition);
  flex-shrink: 0;
}

.ow-card:hover .ow-card__logo-zone {
  background: rgba(0, 240, 255, 0.03);
}

.ow-card__logo {
  /* max-width: 150px;  */
  max-height: 270px;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.1);
  transition: transform var(--ow-transition), filter var(--ow-transition);
}

.ow-card:hover .ow-card__logo {
  transform: scale(1.06);
  filter: brightness(1.3);
}

.ow-card__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ow-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ow-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(0, 240, 255, 0.2);
  color: var(--ow-blue);
  background: rgba(0, 240, 255, 0.05);
  transition: background var(--ow-transition), border-color var(--ow-transition);
}

.ow-card:hover .ow-tag {
  background: rgba(0, 240, 255, 0.1);
  border-color: rgba(0, 240, 255, 0.4);
}

.ow-card__name {
  font-family: var(--ow-font-head);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  letter-spacing: 0.03em;
  color: var(--ow-white);
  margin: 0;
  line-height: 1.1;
}

.ow-card__desc {
  font-size: 0.85rem;
  color: var(--ow-muted);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.ow-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

.ow-card__year {
  font-family: var(--ow-font-head);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--ow-orange);
  opacity: 0.8;
}

.ow-card__glow {
  position: absolute;
  inset: 0;
  border-radius: var(--ow-radius);
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 240, 255, 0.08) 0%, transparent 70%);
  transition: opacity var(--ow-transition);
}

.ow-card:hover .ow-card__glow {
  opacity: 1;
}

/* ── BUTTON ── */
.ow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1.5px solid var(--ow-blue);
  color: var(--ow-blue);
  background: transparent;
  border-radius: 100px;
  font-family: var(--ow-font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}

.ow-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ow-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 0;
}

.ow-btn:hover::before {
  transform: scaleX(1);
}

.ow-btn:hover {
  color: #000;
  border-color: var(--ow-blue);
}

.ow-btn__text,
.ow-btn__icon {
  position: relative;
  z-index: 1;
}

.ow-btn__icon {
  transition: transform 0.3s ease;
  font-style: normal;
  display: inline-block;
}

.ow-btn:hover .ow-btn__icon {
  transform: translateX(4px);
}

.ow-btn--cta {
  padding: 14px 34px;
  font-size: 0.88rem;
  border-color: var(--ow-orange);
  color: var(--ow-orange);
}

.ow-btn--cta::before {
  background: var(--ow-orange);
}

.ow-btn--cta:hover {
  color: #000;
  border-color: var(--ow-orange);
}

/* ══════════════════════════════════════════════════
   STATS — UNIQUE DESIGN (different from other pages)
   Uses individual cards with icon + progress bar
   instead of the shared 4-column grid used elsewhere
════════════════════════════════════════════════════ */
.ow-stats-wrap {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 80px auto 0;
  padding: 0 40px;
}

.ow-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ow-stat-card {
  background: var(--ow-bg-card);
  border: 1px solid var(--ow-border);
  border-radius: var(--ow-radius);
  padding: 28px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--ow-transition), transform var(--ow-transition);
}

.ow-stat-card:hover {
  border-color: rgba(0, 240, 255, 0.3);
  transform: translateY(-4px);
}

/* Orange variant */
.ow-stat-card--orange {
  background: rgba(255, 101, 0, 0.04);
  border-color: rgba(255, 101, 0, 0.12);
}

.ow-stat-card--orange:hover {
  border-color: rgba(255, 101, 0, 0.35);
}

/* Subtle corner glow */
.ow-stat-card::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.ow-stat-card--orange::after {
  background: radial-gradient(circle, rgba(255, 101, 0, 0.09) 0%, transparent 70%);
}

/* Icon */
.ow-stat-card__icon {
  width: 38px;
  height: 38px;
  color: var(--ow-blue);
  flex-shrink: 0;
}

.ow-stat-card--orange .ow-stat-card__icon {
  color: var(--ow-orange);
}

.ow-stat-card__icon svg {
  width: 100%;
  height: 100%;
}

/* Number row */
.ow-stat-card__data {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ow-stat-card__row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}

.ow-stat-card__num {
  font-family: var(--ow-font-head);
  font-size: clamp(2.8rem, 4vw, 4rem);
  color: var(--ow-blue);
  line-height: 1;
  text-shadow: 0 0 24px rgba(0, 240, 255, 0.35);
}

.ow-stat-card--orange .ow-stat-card__num {
  color: var(--ow-orange);
  text-shadow: 0 0 24px rgba(255, 101, 0, 0.35);
}

.ow-stat-card__suffix {
  font-family: var(--ow-font-head);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--ow-orange);
  line-height: 1;
  text-shadow: 0 0 24px rgba(255, 101, 0, 0.35);
}

.ow-stat-card__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ow-muted);
}

/* Progress bar */
.ow-stat-card__bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  overflow: hidden;
  margin-top: auto;
}

.ow-stat-card__fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--ow-blue), rgba(0, 240, 255, 0.4));
  width: 0%;
  /* animated by JS */
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
}

.ow-stat-card--orange .ow-stat-card__fill {
  background: linear-gradient(90deg, var(--ow-orange), rgba(255, 101, 0, 0.4));
  box-shadow: 0 0 8px rgba(255, 101, 0, 0.5);
}

/* ── CTA STRIP ── */
.ow-cta {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 60px;
  border-radius: var(--ow-radius);
  background: linear-gradient(135deg, rgba(255, 101, 0, 0.08) 0%, rgba(0, 240, 255, 0.04) 100%);
  border: 1px solid rgba(255, 101, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  overflow: hidden;
}

.ow-cta::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 101, 0, 0.07);
  pointer-events: none;
}

.ow-cta::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.04);
  pointer-events: none;
}

.ow-cta__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ow-orange);
  margin-bottom: 10px;
}

.ow-cta__heading {
  font-family: var(--ow-font-head);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: var(--ow-white);
  margin: 0;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .ow-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 24px;
  }

  .ow-hero {
    padding: 0 24px 48px;
  }

  .ow-stats-wrap {
    margin: 60px 0 0;
    padding: 0 24px;
  }

  .ow-stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .ow-cta {
    margin: 32px 24px 0;
    padding: 48px 40px;
  }
}

@media (max-width: 768px) {
  .ow-section {
    padding: 70px 0 60px;
  }

  .ow-hero {
    padding: 0 20px 40px;
  }

  .ow-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .ow-stats-wrap {
    margin: 50px 0 0;
    padding: 0 20px;
  }

  .ow-stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .ow-cta {
    flex-direction: column;
    align-items: flex-start;
    margin: 32px 20px 0;
    padding: 40px 28px;
  }

  .ow-service-labels {
    gap: 8px;
  }

  .ow-service-label {
    padding: 7px 16px;
    font-size: 0.72rem;
  }
}

@media (max-width: 480px) {
  .ow-hero__title {
    font-size: clamp(52px, 15vw, 80px);
  }

  .ow-card__body {
    padding: 20px;
  }

  .ow-card__logo-zone {
    height: 150px;
    padding: 24px 20px;
  }

  .ow-cta {
    margin: 24px 16px 0;
    padding: 32px 20px;
  }

  .ow-stats-wrap {
    padding: 0 16px;
  }

  .ow-stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .ow-stat-card {
    padding: 20px 16px 16px;
  }

  .ow-grid {
    padding: 0 16px;
  }

  .ow-hero {
    padding: 0 16px 36px;
  }
}

/* ── BASE RESET ── */
* {
  box-sizing: border-box;
}

/* ── WHATSAPP WIDGET ── */
.whatsapp-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 9999;
  transition: transform 0.3s ease;
}

.whatsapp-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(#00f0ff, #ff6a00, #00f0ff);
  animation: rotateRing 3s linear infinite;
  filter: blur(6px);
}

.whatsapp-btn {
  position: relative;
  width: 55px;
  height: 55px;
  background: #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.whatsapp-btn img {
  width: 30px;
  height: auto;
}

.whatsapp-wrapper:hover {
  transform: scale(1.1);
}

@keyframes rotateRing {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .whatsapp-wrapper {
    width: 65px;
    height: 65px;
    bottom: 18px;
    right: 18px;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
  }

  .whatsapp-btn img {
    width: 26px;
  }
}

@media (max-width: 480px) {
  .whatsapp-wrapper {
    width: 60px;
    height: 60px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-btn {
    width: 45px;
    height: 45px;
  }

  .whatsapp-btn img {
    width: 24px;
  }
}

/* ================================================================
   ENQUIRY FORM STYLES — enquiry-form.css
   Web3Forms version with Country Code phone field.
   All rules scoped to .enq- prefix.
   ================================================================ */

/* -- Section wrapper -- */
.enq-section {
  background: #080808;
  padding: 100px 20px 80px;
  font-family: 'DM Sans', sans-serif;
}

.enq-container {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

/* -- Heading -- */
.enq-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #ffffff;
  text-align: center;
  letter-spacing: 2px;
  margin: 0 0 8px;
  line-height: 1.1;
}

.enq-heading span {
  color: #00f0ff;
}

.enq-subtext {
  text-align: center;
  color: #888888;
  font-size: 0.92rem;
  margin: 0 0 40px;
  font-weight: 300;
}

/* -- Card -- */
.enq-card {
  background: #111111;
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 12px;
  padding: 40px 40px;
  position: relative;
  overflow: hidden;
}

/* Top gradient accent line */
.enq-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00f0ff, #ff6500);
}

/* -- Two-column grid -- */
.enq-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* -- Form group -- */
.enq-form-group {
  margin-bottom: 20px;
}

/* -- Labels -- */
.enq-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 7px;
}

.enq-label .enq-req {
  color: #00f0ff;
  margin-left: 2px;
}

/* -- Inputs, Select & Textarea -- */
.enq-input,
.enq-select,
.enq-textarea {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: #e8e8e8;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.enq-input::placeholder,
.enq-textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
  font-weight: 300;
}

.enq-input:focus,
.enq-select:focus,
.enq-textarea:focus {
  border-color: #00f0ff;
  background: #1f1f1f;
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.08);
}

/* -- Custom Select wrapper -- */
.enq-select-wrap {
  position: relative;
}

.enq-select-wrap::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #00f0ff;
  pointer-events: none;
}

.enq-select {
  padding-right: 36px;
  cursor: pointer;
}

.enq-select.enq-placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.enq-select option {
  background: #1a1a1a;
  color: #e8e8e8;
}

.enq-select option[value=""] {
  color: rgba(255, 255, 255, 0.35);
}

/* ================================================================
   PHONE FIELD — Country Code + Number
   ================================================================ */

/* Wrapper: code dropdown + number input side by side */
.enq-phone-wrap {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

/* Country code dropdown container */
.enq-code-wrap {
  flex: 0 0 auto;
  width: 110px;
}

/* Remove the default arrow on code select — it has its own */
.enq-code-wrap::after {
  right: 10px;
}

/* The code select itself */
.enq-code-select {
  width: 100%;
  padding: 12px 28px 12px 10px;
  font-size: 0.85rem;
  border-radius: 6px;
  background: #1a1a1a;
  color: #e8e8e8;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.enq-code-select:focus {
  border-color: #00f0ff;
  background: #1f1f1f;
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.08);
  outline: none;
}

/* Number input — takes remaining space */
.enq-phone-input {
  flex: 1;
  min-width: 0;
}

/* ================================================================
   TEXTAREA
   ================================================================ */
.enq-textarea {
  resize: vertical;
  min-height: 120px;
}

/* -- Error state -- */
.enq-input.enq-error,
.enq-select.enq-error,
.enq-textarea.enq-error {
  border-color: #ff6500 !important;
  box-shadow: 0 0 0 3px rgba(255, 101, 0, 0.08);
}

/* -- Submit button -- */
.enq-btn-wrap {
  margin-top: 28px;
  text-align: center;
}

.enq-btn {
  display: inline-block;
  background: linear-gradient(90deg, #ff6500, #ff8c00);
  color: #ffffff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  padding: 14px 56px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  min-width: 200px;
}

.enq-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 101, 0, 0.45);
  filter: brightness(1.1);
}

.enq-btn:active {
  transform: translateY(0);
}

.enq-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* -- Status message -- */
.enq-status {
  margin-top: 16px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 500;
  min-height: 22px;
}

.enq-status.success {
  color: #00f0ff;
}

.enq-status.error {
  color: #ff6500;
}

/* ================================================================
   RESPONSIVE BREAKPOINTS
   ================================================================ */

/* Tablet (≤ 768px) */
@media (max-width: 768px) {
  .enq-section {
    padding: 60px 16px;
  }

  .enq-card {
    padding: 32px 28px;
  }

  .enq-grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

/* Mobile (≤ 560px) */
@media (max-width: 560px) {
  .enq-section {
    padding: 48px 12px;
  }

  .enq-card {
    padding: 28px 18px;
    border-radius: 10px;
  }

  .enq-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .enq-btn {
    width: 100%;
    padding: 14px 20px;
  }

  .enq-subtext {
    margin-bottom: 28px;
  }

  /* Phone field on mobile — stack if needed */
  .enq-code-wrap {
    width: 100px;
  }
}

/* Small mobile (≤ 380px) */
@media (max-width: 380px) {
  .enq-heading {
    font-size: 1.8rem;
  }

  .enq-card {
    padding: 22px 14px;
  }

  .enq-code-wrap {
    width: 90px;
  }

  .enq-code-select {
    font-size: 0.78rem;
    padding: 12px 22px 12px 8px;
  }
}

/* =============================================
   CASE STUDY PAGE — case-study.css
   Link this in your <head> after your main CSS
   ============================================= */

/* BASE — ensures all text inside cs- sections is white by default
   (overrides browser default black if your global CSS doesn't set it)
------------------------------------------------ */
.cs-hero,
.cs-container,
.cs-overview,
.cs-gallery-section,
.cs-services-section,
.cs-testimonial-section,
.cs-cta-section,
.cs-lightbox {
  color: #f0f0f0;
}

/* HERO
------------------------------------------------ */
.cs-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 64px;
  position: relative;
  overflow: hidden;
}

.cs-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.25) saturate(1.2);
  transform: scale(1.05);
  transition: transform 8s ease;
}

.cs-hero:hover .cs-hero-bg {
  transform: scale(1);
}

.cs-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(8, 8, 8, 1) 0%,
      rgba(8, 8, 8, 0.3) 60%,
      transparent 100%);
}

.cs-hero-tag {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #00f0ff;
  margin-bottom: 18px;
  opacity: 0;
  animation: cs-fadeUp 0.7s 0.3s forwards;
}

.cs-hero-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #00f0ff;
}

.cs-hero-title {
  position: relative;
  z-index: 2;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.92;
  letter-spacing: 2px;
  opacity: 0;
  animation: cs-fadeUp 0.7s 0.5s forwards;
}

.cs-hero-title span {
  color: #ff6500;
}

.cs-hero-meta {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 32px;
  opacity: 0;
  animation: cs-fadeUp 0.7s 0.7s forwards;
}

.cs-hero-meta-item label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 6px;
}

.cs-hero-meta-item p {
  font-size: 0.95rem;
  font-weight: 500;
}

/* CONTAINER
------------------------------------------------ */
.cs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* SECTION LABEL
------------------------------------------------ */
.cs-section-label {
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #00f0ff;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cs-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0, 240, 255, 0.12);
}

/* HEADINGS inside case study */
.cs-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 1.5px;
  line-height: 1;
  margin-bottom: 20px;
}

.cs-heading em {
  color: #ff6500;
  font-style: normal;
}

/* DIVIDER
------------------------------------------------ */
.cs-divider {
  border: none;
  border-top: 1px solid rgba(0, 240, 255, 0.12);
  margin: 0;
}

/* OVERVIEW
------------------------------------------------ */
.cs-overview {
  padding: 96px 0 80px;
  max-width: 760px;
}

.cs-body-text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(240, 240, 240, 0.72);
  font-weight: 300;
}

.cs-body-text+.cs-body-text {
  margin-top: 16px;
}

/* GALLERY — uniform 4-col grid, 1:1 squares
------------------------------------------------ */
.cs-gallery-section {
  padding: 80px 0;
}

.cs-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 40px;
}

.cs-gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0d0d0d;
  border: 1px solid rgba(0, 240, 255, 0.12);
  cursor: pointer;
}

.cs-gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.4s;
  filter: saturate(0.85);
}

.cs-gallery-item:hover img {
  transform: scale(1.07);
  filter: saturate(1.15);
}

.cs-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s;
}

.cs-gallery-item:hover .cs-img-overlay {
  opacity: 1;
}

.cs-img-overlay svg {
  width: 36px;
  height: 36px;
  color: #00f0ff;
}

/* SERVICES
------------------------------------------------ */
.cs-services-section {
  padding: 80px 0;
}

.cs-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.cs-service-card {
  background: #0d0d0d;
  border: 1px solid rgba(0, 240, 255, 0.12);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.cs-service-card:hover {
  border-color: #00f0ff;
  transform: translateY(-4px);
}

.cs-service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00f0ff, #ff6500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.cs-service-card:hover::after {
  transform: scaleX(1);
}

.cs-service-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 240, 255, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.cs-service-icon svg {
  width: 20px;
  height: 20px;
  color: #00f0ff;
}

.cs-service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.cs-service-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(240, 240, 240, 0.6);
}

/* TESTIMONIAL
------------------------------------------------ */
.cs-testimonial-section {
  padding: 80px 0;
}

.cs-testimonial-block {
  background: #0d0d0d;
  border: 1px solid rgba(0, 240, 255, 0.12);
  border-left: 3px solid #00f0ff;
  padding: 48px;
  position: relative;
}

.cs-quote-mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 8rem;
  color: #00f0ff;
  opacity: 0.08;
  position: absolute;
  top: -10px;
  left: 32px;
  line-height: 1;
  pointer-events: none;
}

.cs-testimonial-text {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.8;
  color: rgba(240, 240, 240, 0.85);
  font-weight: 300;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.cs-testimonial-author {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.cs-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00f0ff, #ff6500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cs-author-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.cs-author-role {
  font-size: 0.78rem;
  color: #888;
  margin-top: 2px;
}

/* CTA
------------------------------------------------ */
.cs-cta-section {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(180deg,
      transparent,
      rgba(0, 240, 255, 0.03) 50%,
      transparent);
}

.cs-cta-section .cs-heading {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 20px;
}

.cs-cta-section p {
  color: #888;
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 40px;
}

.cs-btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cs-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.cs-btn-primary {
  background: #00f0ff;
  color: #080808;
}

.cs-btn-primary:hover {
  background: #f0f0f0;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.35);
}

.cs-btn-outline {
  background: transparent;
  color: #f0f0f0;
  border: 1px solid rgba(240, 240, 240, 0.2);
}

.cs-btn-outline:hover {
  border-color: #ff6500;
  color: #ff6500;
}

/* LIGHTBOX
------------------------------------------------ */
.cs-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 8, 8, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  backdrop-filter: blur(14px);
}

.cs-lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.cs-lb-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 86vw;
  max-height: 80vh;
}

.cs-lb-img-wrap img {
  max-width: 86vw;
  max-height: 80vh;
  object-fit: contain;
  border: 1px solid rgba(0, 240, 255, 0.12);
  transition: opacity 0.15s ease;
  display: block;
}

.cs-lb-close {
  position: fixed;
  top: 24px;
  right: 32px;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 10;
  font-weight: 500;
}

.cs-lb-close:hover {
  color: #00f0ff;
}

.cs-lb-counter {
  position: fixed;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: #888;
}

.cs-lb-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(0, 240, 255, 0.12);
  background: rgba(13, 13, 13, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  z-index: 10;
}

.cs-lb-arrow:hover {
  border-color: #00f0ff;
  background: rgba(0, 240, 255, 0.06);
}

.cs-lb-arrow svg {
  width: 22px;
  height: 22px;
  color: #f0f0f0;
}

.cs-lb-prev {
  left: 24px;
}

.cs-lb-next {
  right: 24px;
}

/* SCROLL REVEAL
------------------------------------------------ */
.cs-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.cs-reveal.visible {
  opacity: 1;
  transform: none;
}

/* KEYFRAMES
------------------------------------------------ */
@keyframes cs-fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* RESPONSIVE
------------------------------------------------ */
@media (max-width: 1024px) {
  .cs-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .cs-hero {
    padding: 0 24px 48px;
  }

  .cs-container {
    padding: 0 24px;
  }

  .cs-hero-meta {
    gap: 20px;
  }

  .cs-overview {
    padding: 64px 0 48px;
  }

  .cs-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .cs-gallery-section,
  .cs-services-section,
  .cs-testimonial-section {
    padding: 56px 0;
  }

  .cs-testimonial-block {
    padding: 32px 20px;
  }

  .cs-cta-section {
    padding: 72px 0;
  }

  .cs-lb-arrow {
    width: 40px;
    height: 40px;
  }

  .cs-lb-prev {
    left: 8px;
  }

  .cs-lb-next {
    right: 8px;
  }
}

@media (max-width: 480px) {
  .cs-hero-meta {
    flex-direction: column;
    gap: 14px;
  }

  .cs-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cs-services-grid {
    grid-template-columns: 1fr;
  }
}