/* StrongX Digital Services — Full Site */

:root {
  --black: #000000;
  --charcoal: #121212;
  --charcoal-light: #1a1a1a;
  --charcoal-card: #161616;
  --orange: #ff6600;
  --orange-bright: #ff8533;
  --orange-dark: #e55a00;
  --orange-glow: rgba(255, 102, 0, 0.45);
  --orange-soft: rgba(255, 102, 0, 0.12);
  --white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.65);
  --border: rgba(255, 255, 255, 0.08);
  --font: "Inter", system-ui, sans-serif;
  --font-display: "Orbitron", var(--font);
  --radius: 16px;
  --radius-sm: 10px;
  --nav-h: 80px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--orange);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--orange-bright);
}

.text-accent {
  color: var(--orange);
}

.section-pad {
  padding: 100px 0;
}

.section-dark {
  background: var(--charcoal);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.section-desc {
  color: var(--text-muted);
  max-width: 560px;
  font-size: 1.05rem;
}

.section-header {
  margin-bottom: 3rem;
}

/* Buttons */
.btn-primary {
  --bs-btn-bg: var(--orange);
  --bs-btn-border-color: var(--orange);
  --bs-btn-hover-bg: var(--orange-bright);
  --bs-btn-hover-border-color: var(--orange-bright);
  --bs-btn-active-bg: var(--orange-dark);
  --bs-btn-active-border-color: var(--orange-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
}

.btn-outline-primary {
  --bs-btn-color: var(--orange);
  --bs-btn-border-color: var(--orange);
  --bs-btn-hover-bg: var(--orange);
  --bs-btn-hover-border-color: var(--orange);
  --bs-btn-hover-color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  border-width: 2px;
}

.btn-outline-light {
  --bs-btn-color: var(--white);
  --bs-btn-border-color: rgba(255, 255, 255, 0.35);
  --bs-btn-hover-bg: var(--white);
  --bs-btn-hover-color: var(--black);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
}

.btn-glow {
  box-shadow: 0 0 24px var(--orange-glow);
}

.btn-glow:hover {
  box-shadow: 0 0 36px var(--orange-glow);
  transform: translateY(-2px);
}

/* Navbar */
.site-header .navbar {
  padding: 0.85rem 0;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.site-header .navbar.scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  padding: 0.5rem 0;
}

.navbar-brand img {
  height: 48px;
  width: auto;
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange-glow);
  transition: width var(--transition), left var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
  left: 20%;
}

.navbar-toggler {
  border-color: var(--orange);
  padding: 0.4rem 0.6rem;
}

.navbar-toggler-icon {
  filter: invert(1);
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--charcoal);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-top: 1rem;
    border: 1px solid var(--border);
  }

  .navbar-collapse .btn {
    margin-top: 1rem;
    width: 100%;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 40%, rgba(255, 102, 0, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(255, 102, 0, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--black) 0%, var(--charcoal) 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-glow--1 {
  width: 400px;
  height: 400px;
  background: var(--orange-glow);
  top: -10%;
  right: 10%;
  opacity: 0.35;
}

.hero-glow--2 {
  width: 300px;
  height: 300px;
  background: rgba(255, 102, 0, 0.25);
  bottom: 10%;
  left: -5%;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
}

.hero-shapes {
  position: absolute;
  right: 0;
  top: 20%;
  width: 40%;
  opacity: 0.5;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero .row {
  --bs-gutter-x: 2rem;
}

@media (min-width: 992px) {
  .hero-col-visual {
    padding-left: 1.5rem;
  }

  .hero-visual__media {
    min-height: 300px;
  }
}

@media (min-width: 1200px) {
  .hero-visual {
    max-width: 620px;
  }

  .hero-visual__media {
    min-height: 320px;
  }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-title-sub {
  display: block;
  font-size: clamp(1.25rem, 3vw, 2rem);
  color: var(--white);
  margin-top: 0.35rem;
}

.hero-x {
  color: var(--orange);
  font-size: 0.5em;
  vertical-align: super;
  text-shadow: 0 0 20px var(--orange-glow);
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 0.75rem;
}

.hero-tagline {
  color: var(--orange);
  font-size: 1rem;
  margin-bottom: 1.75rem;
}

.stat-item strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1.2;
}

.stat-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Visual */
.hero-col-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
}

.hero-visual__stage {
  position: relative;
  width: 100%;
  padding: 1.25rem 1.25rem 1.5rem;
}

/* Soft orange halo behind showcase */
.hero-visual__halo {
  position: absolute;
  top: 50%;
  left: 55%;
  width: min(92%, 480px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 102, 0, 0.35) 0%,
    rgba(255, 102, 0, 0.12) 45%,
    transparent 70%
  );
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
}

.hero-visual__glow {
  position: absolute;
  inset: 8% 4% 12% 8%;
  background: radial-gradient(ellipse at 70% 45%, var(--orange-glow) 0%, transparent 65%);
  filter: blur(36px);
  z-index: 0;
  opacity: 0.7;
  animation: pulse-glow 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.03); }
}

/* Premium framed showcase — fits wide hero artwork */
.hero-visual__frame {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  padding: 3px;
  background: linear-gradient(
    145deg,
    rgba(255, 102, 0, 0.65) 0%,
    rgba(255, 102, 0, 0.15) 40%,
    rgba(255, 255, 255, 0.08) 100%
  );
  box-shadow:
    0 0 48px rgba(255, 102, 0, 0.25),
    0 28px 64px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-visual__frame-accent {
  position: absolute;
  top: -1px;
  right: 12%;
  width: 40%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange-bright), transparent);
  border-radius: 2px;
  z-index: 3;
  opacity: 0.9;
}

.hero-visual__media {
  position: relative;
  border-radius: 21px;
  overflow: hidden;
  background: linear-gradient(165deg, #0d0d0f 0%, var(--charcoal) 50%, #0a0a0c 100%);
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.hero-visual__main {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 0.35rem 0.5rem;
}

.float-badge {
  position: absolute;
  z-index: 4;
  background: rgba(22, 22, 22, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 102, 0, 0.25);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  animation: float 5s ease-in-out infinite;
}

.float-badge i {
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.float-badge--projects {
  bottom: 6%;
  left: 0;
}

.float-card-mini {
  position: absolute;
  z-index: 3;
  width: clamp(88px, 22vw, 118px);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid rgba(255, 102, 0, 0.2);
  background: var(--charcoal-card);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5);
  animation: float 6s ease-in-out infinite;
}

.float-card-mini img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
}

.float-card-mini--1 {
  top: 2%;
  right: 0;
  animation-delay: -1s;
}

.float-card-mini--2 {
  bottom: 18%;
  right: -2%;
  animation-delay: -2.5s;
}

.hero-play {
  position: absolute;
  top: 42%;
  left: -4px;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  box-shadow: 0 0 28px var(--orange-glow);
  z-index: 4;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.hero-play:hover {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 0 40px var(--orange-glow);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Services Bar */
.services-bar {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.bar-item {
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition), transform var(--transition);
}

.bar-item i {
  font-size: 1.5rem;
  color: var(--orange);
}

.bar-item span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.bar-item:hover {
  transform: translateY(-4px);
}

.bar-item:hover span {
  color: var(--white);
}

/* Service Cards */
.service-card {
  background: var(--charcoal-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  height: 100%;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 102, 0, 0.4);
  box-shadow: 0 0 30px var(--orange-soft), 0 20px 50px rgba(0, 0, 0, 0.4);
}

.service-card--featured {
  border-color: rgba(255, 102, 0, 0.35);
  background: linear-gradient(145deg, var(--charcoal-card) 0%, rgba(255, 102, 0, 0.08) 100%);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--orange-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  color: var(--orange);
  transition: box-shadow var(--transition);
}

.service-card:hover .service-card__icon {
  box-shadow: 0 0 24px var(--orange-glow);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* About */
.about-text {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-weight: 500;
}

.check-list i {
  color: var(--orange);
  font-size: 1.1rem;
}

.about-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-visual__stripes {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 140%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 12px,
    rgba(255, 102, 0, 0.15) 12px,
    rgba(255, 102, 0, 0.15) 24px
  );
  z-index: 0;
}

.about-visual__img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.experience-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  background: var(--orange);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 30px var(--orange-glow);
}

.experience-badge strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.experience-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Portfolio */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 0 20px var(--orange-glow);
}

.portfolio-item {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.portfolio-item.hidden {
  display: none;
}

.portfolio-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(255, 102, 0, 0.75) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  padding: 1.5rem;
  text-align: center;
}

.portfolio-card__overlay i {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.portfolio-card__overlay h4 {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.portfolio-card__overlay span {
  font-size: 0.8rem;
  opacity: 0.9;
}

.portfolio-card:hover img {
  transform: scale(1.08);
}

.portfolio-card:hover .portfolio-card__overlay {
  opacity: 1;
}

/* Process */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
  margin-top: 2rem;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border), var(--orange), var(--border), transparent);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.5rem;
}

.process-step__num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--orange);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.process-step__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--charcoal-card);
  border: 2px solid rgba(255, 102, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--orange);
  box-shadow: 0 0 24px var(--orange-soft);
  transition: box-shadow var(--transition), transform var(--transition);
}

.process-step:hover .process-step__icon {
  box-shadow: 0 0 32px var(--orange-glow);
  transform: scale(1.08);
}

.process-step h4 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.process-step p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* Testimonials */
.testimonials-slider {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.testimonials-track {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-height: 280px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  background: var(--charcoal-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.testimonial-quote {
  font-size: 2.5rem;
  color: var(--orange);
  opacity: 0.5;
  display: block;
  margin-bottom: 0.5rem;
}

.stars {
  color: var(--orange);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.testimonial-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--orange);
  background: transparent;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: all var(--transition);
}

.slider-btn:hover {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 0 20px var(--orange-glow);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.slider-dot.active {
  background: var(--orange);
  transform: scale(1.2);
  box-shadow: 0 0 12px var(--orange-glow);
}

/* Pricing */
.pricing-card {
  background: var(--charcoal-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.pricing-card--featured {
  border-color: var(--orange);
  background: linear-gradient(180deg, rgba(255, 102, 0, 0.12) 0%, var(--charcoal-card) 40%);
  box-shadow: 0 0 40px var(--orange-soft);
  transform: scale(1.03);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 1rem;
  border-radius: 50px;
}

.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-align: center;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--orange);
  text-align: center;
  line-height: 1;
}

.pricing-price .currency {
  font-size: 1rem;
  font-weight: 600;
  vertical-align: super;
  margin-right: 0.25rem;
}

.pricing-period {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.pricing-card li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.pricing-card li i {
  color: var(--orange);
}

.pricing-card li i{
  color: var(--orange);
  
}

.pricing-card li i {
  color: var(--orange);
}

/* CTA Banner */
.cta-banner {
  padding: 0 0 100px;
}

.cta-inner {
  position: relative;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 50%, var(--charcoal-light) 100%);
  border: 1px solid rgba(255, 102, 0, 0.25);
  border-radius: var(--radius);
  padding: 4rem 2rem;
  text-align: center;
  overflow: hidden;
}

.cta-shapes {
  position: absolute;
  inset: 0;
  background:
  linear-gradient(-45deg, transparent 40%, rgba(255, 102, 0, 0.08) 40%, rgba(255, 102, 0, 0.08) 45%, transparent 45%),
  linear-gradient(45deg, transparent 55%, rgba(255, 102, 0, 0.06) 55%, rgba(255, 102, 0, 0.06) 60%, transparent 60%);
  pointer-events: none;
}

.cta-inner h2 {
  position: relative;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.cta-inner p {
  position: relative;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-inner .btn {
  position: relative;
}

/* Contact */
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  color: var(--text-muted);
}

.contact-info-list i {
  color: var(--orange);
  font-size: 1.2rem;
  margin-top: 0.15rem;
}

.contact-info-list a {
  color: var(--white);
}

.contact-info-list a:hover {
  color: var(--orange);
}

.contact-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.contact-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition);
}

.contact-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 0 20px var(--orange-glow);
}

.whatsapp-btn {
  width: auto !important;
  border-radius: 50px !important;
  padding: 0 1.25rem !important;
  gap: 0.5rem;
  background: #25d366 !important;
  border-color: #25d366 !important;
}

.whatsapp-btn:hover {
  background: #20bd5a !important;
  border-color: #20bd5a !important;
}

.contact-form .form-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.contact-form .form-control,
.contact-form .form-select {
  background: var(--charcoal-card);
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: var(--charcoal-card);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 0 0 3px var(--orange-soft);
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.map-placeholder {
  background: var(--charcoal-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--text-muted);
}

.map-placeholder i {
  font-size: 2.5rem;
  color: var(--orange);
  display: block;
  margin-bottom: 0.75rem;
}

/* Footer */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-logo {
  height: 44px;
  width: auto;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 280px;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--charcoal-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.site-footer h5 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-links--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.footer-links--inline li {
  margin: 0;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-contact i {
  color: var(--orange);
  margin-top: 0.15rem;
}

.footer-contact a {
  color: var(--text-muted);
}

.footer-contact a:hover {
  color: var(--orange);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  z-index: 999;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5);
  transition: transform var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--white);
}

/* Legal Pages */
.legal-page {
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 80px;
  min-height: 100vh;
  background: var(--black);
}

.legal-page .legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.legal-page .legal-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.legal-page h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--orange);
  margin: 2rem 0 0.75rem;
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.legal-page ul {
  padding-left: 1.25rem;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
  color: var(--orange);
}

/* Responsive */
@media (max-width: 1199px) {
  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-timeline::before {
    display: none;
  }
}

@media (max-width: 991px) {
  .section-pad {
    padding: 70px 0;
  }

  .pricing-card--featured {
    transform: none;
    margin-top: 1rem;
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .hero-visual {
    max-width: 520px;
    padding: 0;
  }

  .hero-visual__media {
    min-height: 240px;
  }
}

@media (max-width: 767px) {
  .hero {
    padding-top: calc(var(--nav-h) + 20px);
    padding-bottom: 60px;
    text-align: center;
  }

  .hero-desc,
  .hero-tagline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem !important;
  }

  .hero-col-visual {
    margin-top: 2rem;
    padding: 0 0.25rem;
  }

  .hero-visual {
    max-width: 100%;
    padding: 0;
  }

  .hero-visual__stage {
    padding: 0.75rem 0.5rem 1rem;
  }

  .hero-visual__halo {
    left: 50%;
    width: 85%;
  }

  .hero-visual__media {
    aspect-ratio: 16 / 11;
    min-height: 200px;
  }

  .hero-visual__main {
    padding: 0.25rem;
  }

  .float-badge--projects {
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: max-content;
    bottom: -8px;
    font-size: 0.72rem;
    padding: 0.5rem 0.85rem;
  }

  .float-card-mini--1 {
    top: -4px;
    right: 4px;
    width: 72px;
  }

  .float-card-mini--2 {
    display: none;
  }

  .hero-play {
    display: none;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .testimonials-slider {
    flex-direction: column;
  }

  .slider-btn--prev {
    order: 2;
  }

  .testimonials-track {
    order: 1;
    width: 100%;
  }

  .slider-btn--next {
    order: 3;
  }

  .testimonials-slider .slider-btn {
    margin: 0 0.5rem;
  }
}

@media (max-width: 575px) {
  .bar-item span {
    font-size: 0.65rem;
  }

  .cta-inner {
    padding: 2.5rem 1.25rem;
  }
}
