/* =========================
   ROOT VARIABLES
========================= */
:root {
  --primary: #990000;
  --secondary: #FB7B3B;
  --dark-blue: #080026;
  --deep-blue: #000066;
  --black: #111111;
  --white: #ffffff;
  --text-soft: #5f5f5f;
  --border-soft: rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 20px 80px rgba(0, 0, 0, 0.22);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

/* =========================
   GLOBAL RESET / BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  cursor: none;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.5px;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* =========================
   HEADER / NAVBAR
========================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.nav-inner {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 45px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  color: #111111;
  font-weight: 600;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: #FB7B3B;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #990000, #FB7B3B);
  border: none;
  box-shadow: 0 10px 24px rgba(153, 0, 0, 0.15);
  transition: transform 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.4rem;
  color: #ffffff;
  background: #000066;
  border: none;
  transition: all 0.3s ease;
}

/* =========================
   MOBILE MENU
========================= */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 999;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-inner {
  width: 100%;
  padding: 24px 22px 22px;
  background:
    radial-gradient(circle at 20% 20%, rgba(251, 123, 59, 0.10), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(153, 0, 0, 0.14), transparent 25%),
    linear-gradient(135deg, #080026 0%, #000066 55%, #02020f 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.mobile-menu-inner a:not(.mobile-btn) {
  display: block;
  width: 100%;
  padding: 20px 0;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-actions {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.mobile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  border-radius: 18px;
  font-weight: 700;
  font-size: 1.05rem;
}

.mobile-btn-outline {
  color: var(--secondary);
  border: 1px solid rgba(251, 123, 59, 0.35);
  background: rgba(255, 255, 255, 0.02);
}

.mobile-btn-solid {
  color: #ffffff;
  background: linear-gradient(135deg, #990000, #FB7B3B);
  box-shadow: 0 12px 28px rgba(153, 0, 0, 0.18);
}

/* =========================
   HERO SECTION
========================= */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(251, 123, 59, 0.16), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(153, 0, 0, 0.24), transparent 25%),
    linear-gradient(135deg, var(--dark-blue) 0%, var(--deep-blue) 55%, #02020f 100%);
  color: var(--white);
  padding: 0 0 90px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}

/* Hero Background Glow */
.hero-bg-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-one {
  width: 300px;
  height: 300px;
  background: rgba(251, 123, 59, 0.16);
  top: 80px;
  left: -40px;
}

.hero-glow-two {
  width: 360px;
  height: 360px;
  background: rgba(153, 0, 0, 0.18);
  right: -80px;
  bottom: -60px;
}

/* Hero Layout */
.hero-center-wrap {
  position: relative;
  z-index: 1;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 40px;
}

.hero-content-center {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.hero-content-center h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -1.8px;
  max-width: 960px;
  margin: 0 auto;
}

.hero-content-center p {
  margin: 22px auto 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

/* Hero Buttons */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-actions-center {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  box-shadow: 0 14px 35px rgba(153, 0, 0, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(153, 0, 0, 0.36);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* =========================
   HERO FLOATING ICONS
========================= */
.hero-floating {
  position: absolute;
  width: 132px;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.hero-floating img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  display: block;
}

.hero-float-left-top {
  top: 130px;
  left: -20px;
  animation: floatOne 6s ease-in-out infinite;
}

.hero-float-right-top {
  top: 150px;
  right: -20px;
  animation: floatTwo 6.5s ease-in-out infinite;
}

.hero-float-left-bottom {
  bottom: 60px;
  left: 0;
  animation: floatThree 7s ease-in-out infinite;
}

@keyframes floatOne {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatTwo {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

@keyframes floatThree {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* =========================
   CUSTOM CURSOR
========================= */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 999999;
  opacity: 1;
}

.cursor-dot {
  width: 10px;
  height: 10px;
  margin-left: -5px;
  margin-top: -5px;
  border-radius: 50%;
  background: #FB7B3B;
  box-shadow: 0 0 18px rgba(251, 123, 59, 0.35);
}

.cursor-ring {
  width: 42px;
  height: 42px;
  margin-left: -21px;
  margin-top: -21px;
  border-radius: 50%;
  border: 1.5px solid rgba(251, 123, 59, 0.35);
  background: rgba(153, 0, 0, 0.08);
  backdrop-filter: blur(4px);
  transition:
    width 0.22s ease,
    height 0.22s ease,
    margin 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

.cursor-ring.cursor-hover {
  width: 64px;
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  border-color: rgba(251, 123, 59, 0.6);
  background: rgba(251, 123, 59, 0.08);
}

a,
button,
.btn,
.nav-links a,
.nav-cta,
.menu-toggle {
  cursor: none;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  position: relative;
  background:
    radial-gradient(circle at 15% 20%, rgba(251, 123, 59, 0.10), transparent 24%),
    radial-gradient(circle at 85% 30%, rgba(153, 0, 0, 0.14), transparent 24%),
    linear-gradient(135deg, #060018 0%, #000066 58%, #02020f 100%);
  color: rgba(255, 255, 255, 0.86);
  margin-top: 100px;
  padding: 0 0 28px;
  overflow: hidden;
}

.footer-top-bar {
  width: 100%;
  height: 10px;
  background: linear-gradient(135deg, #990000, #FB7B3B);
  box-shadow: 0 8px 24px rgba(153, 0, 0, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.15fr;
  gap: 48px;
  padding: 64px 0 44px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
}

.footer-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.25s ease;
}

.footer-socials a:hover {
  background: linear-gradient(135deg, #990000, #FB7B3B);
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: 0.4px;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
  line-height: 1.6;
  transition: color 0.25s ease;
}

.footer-column a:hover {
  color: #FB7B3B;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.footer-bottom-left p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.footer-bottom-right a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom-right a:hover {
  color: #FB7B3B;
}

/* =========================
   GLOBAL RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .hero-floating {
    width: 110px;
    height: 110px;
  }

  .hero-floating img {
    width: 74px;
    height: 74px;
  }

  .hero-float-left-top {
    left: 0;
  }

  .hero-float-right-top {
    right: 0;
  }

  .hero-float-left-bottom {
    left: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 780px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  body {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  a,
  button,
  .btn,
  .nav-links a,
  .nav-cta,
  .menu-toggle {
    cursor: pointer;
  }

  .hero {
    padding: 0 0 60px;
  }

  .hero-center-wrap {
    min-height: auto;
    padding-top: 88px;
    padding-bottom: 24px;
  }

  .hero-content-center h1 {
    font-size: clamp(2.2rem, 9vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .hero-content-center p {
    font-size: 1rem;
    margin-top: 16px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .eyebrow {
    margin-bottom: 12px;
    padding: 6px 12px;
    font-size: 0.85rem;
  }

  .hero-floating {
    display: none;
  }

  .site-footer {
    margin-top: 72px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 48px 0 34px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (pointer: coarse) {
  body {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  a,
  button,
  .btn,
  .nav-links a,
  .nav-cta,
  .menu-toggle {
    cursor: pointer;
  }
}

/* =========================
   HERO CLIENT STRIP
========================= */
.hero-center-wrap {
  position: relative;
  z-index: 1;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 155px;
}

.hero-clients {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  z-index: 2;
  pointer-events: none;
}

.hero-clients-overlay {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-clients-marquee {
  position: relative;
  overflow: hidden;
  padding: 14px 0 12px;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 1) 8%,
    rgba(0, 0, 0, 1) 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 1) 8%,
    rgba(0, 0, 0, 1) 92%,
    transparent 100%
  );
}

.hero-clients-track {
  display: flex;
  align-items: center;
  gap: 42px;
  width: max-content;
  animation: clientMarquee 30s linear infinite;
}

.client-logo {
  flex: 0 0 auto;
  min-width: 128px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.client-logo img {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter:
    brightness(1.15)
    contrast(1.14)
    saturate(1.03)
    drop-shadow(0 4px 10px rgba(255, 255, 255, 0.08));
}

.hero-float-left-bottom {
  bottom: 135px;
  left: 0;
  animation: floatThree 7s ease-in-out infinite;
}

@keyframes clientMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1024px) {
  .hero-center-wrap {
    padding-bottom: 145px;
  }

  .hero-float-left-bottom {
    bottom: 125px;
    left: 24px;
  }

  .hero-clients-track {
    gap: 30px;
  }

  .client-logo {
    min-width: 108px;
    height: 46px;
  }

  .client-logo img {
    max-height: 38px;
  }
}

@media (max-width: 768px) {
  .hero-center-wrap {
    padding-bottom: 105px;
  }

  .hero-clients {
    bottom: 6px;
  }

  .hero-clients-overlay {
    border-radius: 18px;
    background: rgba(255, 255, 255, 1);
  }

  .hero-clients-marquee {
    padding: 12px 0;
  }

  .hero-clients-track {
    gap: 22px;
    animation-duration: 24s;
  }

  .client-logo {
    min-width: 104px;
    height: 46px;
  }

  .client-logo img {
    max-height: 72px;
  }
}

/* =========================
   SERVICES SECTION
========================= */
.services-section {
  position: relative;
  background: #ffffff;
  color: #111111;
  padding: 110px 0;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(251, 123, 59, 0.08), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(153, 0, 0, 0.06), transparent 22%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.015), transparent 28%);
  pointer-events: none;
}

.services-wrap {
  position: relative;
  z-index: 1;
}

.services-intro {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.services-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  background: rgba(0, 0, 102, 0.06);
  color: var(--deep-blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.services-intro h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.02;
  letter-spacing: -1.6px;
  color: #111111;
}

.services-intro p {
  margin-top: 20px;
  color: #5f5f5f;
  font-size: 1.08rem;
  line-height: 1.8;
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  border-radius: 28px;
  padding: 1.5px;
  background:
    linear-gradient(130deg, rgba(153, 0, 0, 0.16), rgba(0, 0, 102, 0.1), rgba(251, 123, 59, 0.18));
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.06),
    0 6px 18px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(251, 123, 59, 0.95) 48deg,
    rgba(255, 255, 255, 0.2) 88deg,
    transparent 130deg,
    transparent 230deg,
    rgba(0, 0, 102, 0.75) 290deg,
    rgba(153, 0, 0, 0.85) 340deg,
    transparent 360deg
  );
  animation: serviceTubeFlow 7s linear infinite;
  opacity: 0.9;
  z-index: 0;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf7 100%);
  z-index: 1;
}

.service-card-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 360px;
  padding: 32px 28px 30px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(251, 123, 59, 0.08), transparent 30%),
    radial-gradient(circle at bottom left, rgba(0, 0, 102, 0.06), transparent 28%);
}

.service-card-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 15%, rgba(251, 123, 59, 0.14), transparent 24%),
    radial-gradient(circle at 85% 80%, rgba(0, 0, 102, 0.1), transparent 28%);
  opacity: 0.7;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.1),
    0 10px 28px rgba(153, 0, 0, 0.08);
}

.service-card:hover .service-card-glow {
  opacity: 1;
  transform: scale(1.03);
}

.service-number {
  display: inline-block;
  margin-bottom: 20px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
}

.service-card-01 .service-number {
  color: #fb7b3b;
  text-shadow: 0 0 22px rgba(251, 123, 59, 0.22);
}

.service-card-02 .service-number {
  color: #0000b8;
  text-shadow: 0 0 22px rgba(0, 0, 184, 0.18);
}

.service-card-03 .service-number {
  color: #b30000;
  text-shadow: 0 0 22px rgba(179, 0, 0, 0.18);
}

.service-card h3 {
  font-size: 1.45rem;
  line-height: 1.2;
  color: #111111;
  margin-bottom: 12px;
}

.service-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 16px;
}

.service-card p {
  color: #5f5f5f;
  line-height: 1.8;
  font-size: 1rem;
}

.services-action {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

@keyframes serviceTubeFlow {
  0% {
    transform: rotate(0deg) scale(1.05);
  }
  100% {
    transform: rotate(360deg) scale(1.05);
  }
}

@media (max-width: 1024px) {
  .services-section {
    padding: 88px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 760px;
    margin: 0 auto;
  }

  .service-card-inner {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 72px 0;
  }

  .services-intro {
    margin-bottom: 40px;
  }

  .services-intro p {
    font-size: 1rem;
  }

  .service-card-inner {
    padding: 26px 22px 24px;
  }

  .service-number {
    font-size: 2.35rem;
    margin-bottom: 16px;
  }

  .service-card h3 {
    font-size: 1.25rem;
  }
}

/* =========================
   WHY BRANDING MATTERS
========================= */
.why-branding-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(251, 123, 59, 0.14), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(153, 0, 0, 0.18), transparent 24%),
    linear-gradient(135deg, #07001f 0%, #05004a 52%, #070313 100%);
  color: #ffffff;
}

.why-branding-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 58px 58px;
  pointer-events: none;
}

.why-branding-wrap {
  position: relative;
  z-index: 1;
}

.why-branding-copy {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.why-branding-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.why-branding-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.06;
  letter-spacing: -1.2px;
  max-width: 920px;
  margin: 0 auto;
}

.why-branding-lead {
  margin-top: 22px;
  font-size: 1.14rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.why-branding-text {
  margin: 16px auto 0;
  max-width: 760px;
  font-size: 1.03rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.78);
}

/* Fact Cards */
.why-branding-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.why-fact-card {
  position: relative;
  min-height: 260px;
  padding: 28px 26px 26px;
  border-radius: 28px;
  background: rgba(12, 12, 16, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 0.18s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.why-fact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.08), transparent 26%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.why-fact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 36%);
  pointer-events: none;
}

.why-fact-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.why-fact-card:hover::before {
  opacity: 1;
}

.why-fact-number,
.why-fact-card h3,
.why-fact-card p {
  position: relative;
  z-index: 1;
}

.why-fact-number {
  display: inline-block;
  margin-bottom: 28px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1.4px;
}

.fact-card-orange .why-fact-number {
  color: #fb7b3b;
}

.fact-card-blue .why-fact-number {
  color: #2690ff;
}

.fact-card-red .why-fact-number {
  color: #ff4b3e;
}

.why-fact-card h3 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 14px;
  color: #f5f5f5;
}

.why-fact-card p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.68);
  max-width: 320px;
}

.why-branding-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

@media (max-width: 1100px) {
  .why-branding-facts {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 42px auto 0;
  }
}

@media (max-width: 768px) {
  .why-branding-section {
    padding: 76px 0;
  }

  .why-branding-copy h2 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    line-height: 1.08;
  }

  .why-branding-lead {
    font-size: 1.02rem;
  }

  .why-branding-text {
    font-size: 0.98rem;
  }

  .why-fact-card {
    min-height: auto;
    padding: 24px 22px;
  }

  .why-fact-number {
    font-size: 2.6rem;
    margin-bottom: 22px;
  }

  .why-fact-card h3 {
    font-size: 1.28rem;
  }
}

/* =========================
   WEB DEVELOPMENT MATTERS
========================= */
.web-dev-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background:
    radial-gradient(circle at 14% 16%, rgba(38, 144, 255, 0.08), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(251, 123, 59, 0.08), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  color: #111111;
}

.web-dev-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 102, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 102, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  pointer-events: none;
}

.web-dev-wrap {
  position: relative;
  z-index: 1;
}

.web-dev-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.web-dev-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--deep-blue);
  background: rgba(0, 0, 102, 0.06);
}

.web-dev-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -1.2px;
  max-width: 920px;
  margin: 0 auto;
  color: #111111;
}

.web-dev-lead {
  margin-top: 22px;
  font-size: 1.14rem;
  font-weight: 700;
  color: #1f1f1f;
}

.web-dev-text {
  margin: 16px auto 0;
  max-width: 780px;
  font-size: 1.03rem;
  line-height: 1.85;
  color: #5f5f5f;
}

.web-dev-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.web-fact-card {
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(38, 144, 255, 0.08), transparent 28%),
    rgba(12, 12, 16, 0.92);
  border-color: rgba(0, 0, 0, 0.08);
}

.web-card-orange .why-fact-number {
  color: #fb7b3b;
}

.web-card-blue .why-fact-number {
  color: #2690ff;
}

.web-card-red .why-fact-number {
  color: #ff4b3e;
}

.web-dev-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

@media (max-width: 1100px) {
  .web-dev-facts {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 42px auto 0;
  }
}

@media (max-width: 768px) {
  .web-dev-section {
    padding: 76px 0;
  }

  .web-dev-copy h2 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    line-height: 1.08;
  }

  .web-dev-lead {
    font-size: 1.02rem;
  }

  .web-dev-text {
    font-size: 0.98rem;
  }
}

/* =========================
   MEDIA COVERAGE MATTERS
========================= */
.media-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(251, 123, 59, 0.15), transparent 24%),
    radial-gradient(circle at 84% 20%, rgba(153, 0, 0, 0.18), transparent 24%),
    linear-gradient(135deg, #060018 0%, #000050 54%, #070313 100%);
  color: #ffffff;
}

.media-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 58px 58px;
  pointer-events: none;
}

.media-wrap {
  position: relative;
  z-index: 1;
}

.media-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.media-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.media-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -1.2px;
  max-width: 920px;
  margin: 0 auto;
  color: #ffffff;
}

.media-lead {
  margin-top: 22px;
  font-size: 1.14rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.media-text {
  margin: 16px auto 0;
  max-width: 780px;
  font-size: 1.03rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.78);
}

.media-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.media-fact-card {
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(251, 123, 59, 0.08), transparent 28%),
    rgba(12, 12, 16, 0.82);
}

.media-card-orange .why-fact-number {
  color: #fb7b3b;
}

.media-card-blue .why-fact-number {
  color: #2690ff;
}

.media-card-red .why-fact-number {
  color: #ff4b3e;
}

.media-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

@media (max-width: 1100px) {
  .media-facts {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 42px auto 0;
  }
}

@media (max-width: 768px) {
  .media-section {
    padding: 76px 0;
  }

  .media-copy h2 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    line-height: 1.08;
  }

  .media-lead {
    font-size: 1.02rem;
  }

  .media-text {
    font-size: 0.98rem;
  }
}

/* =========================
   REAL RESULTS SECTION
========================= */
.results-section {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(251, 123, 59, 0.08), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(0, 0, 102, 0.06), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #fffaf7 100%);
  color: #111111;
  overflow: hidden;
}

.results-wrap {
  position: relative;
  z-index: 1;
}

.results-intro {
  max-width: 860px;
  margin-bottom: 52px;
}

.results-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #990000;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.results-kicker::before {
  content: "";
  width: 42px;
  height: 2px;
  background: linear-gradient(135deg, #990000, #fb7b3b);
  border-radius: 999px;
}

.results-intro h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -1.2px;
  color: #111111;
  max-width: 720px;
}

.results-intro p {
  margin-top: 18px;
  max-width: 780px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #5f5f5f;
}

.results-list {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.result-item {
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  transition: background 0.3s ease;
}

.result-item.is-active {
  background:
    linear-gradient(90deg, rgba(153, 0, 0, 0.03) 0%, rgba(255, 255, 255, 0) 32%),
    rgba(255, 255, 255, 0.56);
}

.result-summary {
  width: 100%;
  padding: 34px 0;
  border: 0;
  background: transparent;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 56px;
  gap: 32px;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.result-meta {
  display: grid;
  gap: 14px;
  align-content: start;
}

.result-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 700;
  color: #ff4b3e;
  letter-spacing: -1px;
}

.result-category {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(17, 17, 17, 0.55);
  line-height: 1.7;
}

.result-title-wrap h3 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.08;
  color: #111111;
}

.result-title-wrap p {
  margin-top: 14px;
  max-width: 760px;
  color: #5f5f5f;
  font-size: 1.04rem;
  line-height: 1.7;
}

.result-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  font-weight: 300;
  color: #990000;
  border: 1px solid rgba(153, 0, 0, 0.22);
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.result-item.is-active .result-toggle {
  transform: rotate(45deg);
  background: rgba(153, 0, 0, 0.06);
}

.result-panel {
  display: none;
  padding: 0 88px 34px 252px;
}

.result-item.is-active .result-panel {
  display: block;
}

.result-impact {
  max-width: 820px;
  font-size: 1.22rem;
  line-height: 1.65;
  font-weight: 700;
  color: #111111;
}

.result-deliverables {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 32px;
  padding: 0;
  list-style: none;
}

.result-deliverables li {
  position: relative;
  padding-left: 22px;
  color: #5f5f5f;
  font-size: 1rem;
  line-height: 1.7;
}

.result-deliverables li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(135deg, #990000, #fb7b3b);
  transform: rotate(45deg);
}

@media (max-width: 1024px) {
  .result-summary {
    grid-template-columns: 160px minmax(0, 1fr) 48px;
    gap: 24px;
  }

  .result-panel {
    padding: 0 0 32px 184px;
  }

  .result-deliverables {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .results-section {
    padding: 78px 0;
  }

  .results-intro {
    margin-bottom: 40px;
  }

  .results-intro p {
    font-size: 0.98rem;
  }

  .result-summary {
    grid-template-columns: 1fr 40px;
    gap: 18px;
    padding: 28px 0;
  }

  .result-meta {
    grid-column: 1 / -1;
    gap: 10px;
  }

  .result-title-wrap {
    grid-column: 1 / 2;
  }

  .result-number {
    font-size: 2.7rem;
  }

  .result-title-wrap h3 {
    font-size: 1.5rem;
  }

  .result-title-wrap p {
    font-size: 0.98rem;
  }

  .result-toggle {
    width: 40px;
    height: 40px;
    font-size: 1.65rem;
    align-self: start;
  }

  .result-panel {
    padding: 0 0 28px;
  }

  .result-impact {
    font-size: 1.06rem;
  }
}

