@font-face {
  font-family: "TT Firs Neue";
  src: url("../Fonts/TT-Firs-Neue-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TT Firs Neue";
  src: url("../Fonts/TT-Firs-Neue-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TT Firs Neue";
  src: url("../Fonts/TT-Firs-Neue-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GaramondNova";
  src: url("../Fonts/Garamond-Nova-IT.otf") format("opentype");
  font-weight: normal;
  font-style: italic;
}

html,
body {
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  display: none;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  -ms-overflow-style: none;
  scrollbar-width: none;
  font-family: "TT Firs Neue", sans-serif;
  font-size: 16px;
  text-transform: none;
  background: var(--black);
  color: var(--white);
  margin: 50px;
}

html,
body {
  overflow-x: hidden;
}

html.no-scroll,
body.no-scroll {
  overflow: hidden;
}

:lang(ar),
[dir="rtl"],
.ar {
  font-family: "IBM Plex Sans Arabic", sans-serif;
}

/* Variables */
:root {
  --black: #1b1d1b;
  --orange: #ff3f1a;
  --teal: #447980;
  --blue: #9ed2e3;
  --white: #ececec;
  --page-margin: 50px;
}

@media (max-width: 1024px) {
  * {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  section,
  .brand-divider {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }
}

/* Navbar */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: var(--black);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
  mix-blend-mode: lighten;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  opacity: 0.7;
  text-transform: uppercase;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--orange);
}

/* Contact Button */
nav #btnCon {
  width: 150px;
  text-align: center;
  text-decoration: none;
  background: var(--orange);
  color: var(--black);
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  border: none;
}

nav #btnCon:hover {
  background: transparent;
  color: var(--orange);
  border: 1px solid var(--orange);
}

/* Hamburger */
.hamburger {
  display: none;
  cursor: pointer;
  font-size: 32px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  transition: transform 0.3s ease;
  z-index: 9999;
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --page-margin: 10px;
  }
  body {
    margin: 10px;
  }
  .nav-links {
    display: none;
  }
  nav #btnCon {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  nav {
    padding: 20px 24px;
  }
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: var(--black);
  z-index: 2000;
  padding: 80px 40px;
  transition: right 0.3s ease;
}

.sidebar ul li a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sidebar ul li a ion-icon {
  font-size: 18px;
  color: var(--orange);
}

.sidebar ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sidebar ul a {
  color: var(--white);
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.sidebar ul a:hover {
  color: var(--orange);
}

/* Overlay */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
}

.sidebar.open {
  right: 0;
}
.hamburger.open {
  transform: rotate(45deg);
}
.overlay.open {
  display: block;
}

/* Hero Section */
.hero {
  position: relative;
  align-items: center;
  margin: 50px 20px;
}

/* Big name behind everything */
.hero-bg-name {
  position: absolute;
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  font-size: 10vw;
  white-space: nowrap;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  z-index: 0;
  pointer-events: none;
  letter-spacing: -4px;
  line-height: 0.95;
  user-select: none;
}

.hero-bg-text {
  display: block;
  width: 100%;
  text-align: center;
  line-height: 0.95;
}

/* Text */
.hero-sub {
  font-size: 4vw;
  letter-spacing: 3px;
  color: var(--orange);
  text-transform: lowercase;
  font-family: "GaramondNova", serif;
  font-style: italic;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  z-index: 3;
}

.hero-sub span {
  font-size: inherit;
  text-transform: uppercase;
}

.hero-role {
  position: absolute;
  bottom: 5px;
  left: 5px;
  width: 165px;
  font-size: 13px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.hero-desc {
  position: absolute;
  bottom: 5px;
  right: 5px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  text-transform: none;
  background: var(--black);
}

.hero-desc span {
  display: inline-block;
  width: 150px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
}

/* Button */
.hero-btn {
  position: absolute;
  bottom: 10px;
  left: 45%;
  transform: translateX(-45%);
  display: inline-block;
  margin-top: 8px;
  padding: 14px 32px;
  background: var(--orange);
  color: var(--black);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.3s;
  align-self: flex-start;
}

.btn-arrow {
  border: 1px solid var(--black);
  border-radius: 50%;
  display: inline-block;
  margin-left: 10px;
  font-size: 16px;
  vertical-align: middle;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

.hero-btn:hover {
  background: transparent;
  border: 1px solid var(--orange);
  color: var(--orange);
}

.hero-btn:hover .btn-arrow {
  border-color: var(--orange);
}

/* Image */
.hero-img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  z-index: 2;
}

.hero-img img {
  margin-top: 5%;
  width: 100%;
  max-width: 450px;
  object-fit: cover;
  object-position: top;
  mix-blend-mode: luminosity;
  opacity: 0.9;
}

/* + Brand Divider */
.brand-divider img {
  width: 18px;
  height: 18px;
  opacity: 0.35;
  filter: brightness(0) invert(1);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid var(--orange);
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 48px 24px;
    text-align: center;
    align-items: center;
    overflow: clip;
  }

  .hero-bg-name {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    font-size: 13vw;
  }

  .hero-img {
    margin-top: -10%;
    margin-bottom: 20px;
  }

  .hero-img img {
    max-width: 280px;
  }

  .hero-content {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .hero-role,
  .hero-desc {
    position: relative;
    margin-bottom: 10px;
  }

  .hero-role,
  .hero-desc {
    width: 100%;
    right: auto;
    left: auto;
    background: transparent;
  }

  .hero-btn {
    position: relative;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: fit-content;
    margin-top: 16px;
  }
}

/* Fade in */
section,
.brand-divider {
  opacity: 0;
  transform: translateY(24px) translateZ(0);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  will-change: opacity, transform;
}

.brand-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px 0;
}

section.visible,
.brand-divider.visible {
  opacity: 1;
  transform: translateY(0) translateZ(0);
  will-change: auto;
}

/* Story Section */
.story {
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

/* Background image */
.story::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../Images/9390.png") center/cover no-repeat;
  opacity: 0.15;
  z-index: 0;
  mix-blend-mode: screen;
  opacity: 0.12;
  -webkit-mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      var(--black) 5%,
      var(--black) 95%,
      transparent 100%
    ),
    linear-gradient(
      to right,
      transparent 0%,
      var(--black) 5%,
      var(--black) 95%,
      transparent 100%
    );
  -webkit-mask-composite: destination-in;
  mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      var(--black) 5%,
      var(--black) 95%,
      transparent 100%
    ),
    linear-gradient(
      to right,
      transparent 0%,
      var(--black) 5%,
      var(--black) 95%,
      transparent 100%
    );
  mask-composite: intersect;
}

.story-label {
  font-size: 12px;
  text-align: center;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.story-hero-title {
  position: relative;
  z-index: 1;
}

.story-title {
  font-size: clamp(60px, 10vw, 130px);
  font-weight: 700;
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -2px;
}

.story-title .text-trans {
  color: transparent;
}

.letter-o {
  position: relative;
  display: inline-block;
  z-index: 1;
  color: var(--black);
  margin-left: -3px;
}

.o-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.85em;
  height: 0.85em;
  z-index: 0;
  pointer-events: none;
}

.story-content {
  position: relative;
  z-index: 1;
  min-height: unset;
}

.story-left {
  position: relative;
  z-index: 1;
}

.story-origin {
  position: absolute;
  left: 5px;
  top: 40%;
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
}

/* Right */
.story-right {
  position: absolute;
  left: 40%;
  top: 35%;
  width: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 2;
}

.story-right p {
  text-align: left;
  text-transform: none;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
  line-height: 0.95;
}

.story-closing {
  color: var(--orange);
  border-left: 3px solid var(--orange);
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  left: 65%;
  top: 75%;
}

.closing-accent {
  color: var(--orange);
}

/* Mobile */
@media (max-width: 1200px) {
  /* story fixes */
  .story {
    padding: 60px 24px 40px;
  }

  .story-content {
    max-width: 800px;
    margin: 0 auto;
  }

  .story-title {
    font-size: clamp(40px, 9vw, 130px);
    letter-spacing: -1px;
  }

  .story-origin {
    position: absolute;
    left: 40%;
    top: 30%;
    margin-top: 12px;
    margin-bottom: 0;
  }

  .story-right {
    position: relative;
    top: unset;
    left: unset;
    width: 100%;
    margin-top: 32px;
  }

  .story-closing {
    position: relative;
    left: unset;
    top: unset;
  }

  .story-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  /* pricing */
  .pricing-card,
  .pricing-card.featured {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (max-width: 900px) {
  .story-origin {
    position: absolute;
    left: 45%;
    top: 28%;
    margin-top: 12px;
    margin-bottom: 0;
    line-height: 1.2;
  }
}

@media (max-width: 500px) {
  .story-origin {
    position: absolute;
    left: 45%;
    top: 20%;
    line-height: 1.1;
  }
}

/* Services Section */
.services {
  padding: 100px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Background image */
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../Images/Grid_SectService.jpg") center/cover no-repeat;
  opacity: 0.5;
  z-index: 0;
  mix-blend-mode: screen;
  opacity: 0.12;
  -webkit-mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      var(--black) 5%,
      var(--black) 95%,
      transparent 100%
    ),
    linear-gradient(
      to right,
      transparent 0%,
      var(--black) 5%,
      var(--black) 95%,
      transparent 100%
    );
  -webkit-mask-composite: destination-in;
  mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      var(--black) 5%,
      var(--black) 95%,
      transparent 100%
    ),
    linear-gradient(
      to right,
      transparent 0%,
      var(--black) 5%,
      var(--black) 95%,
      transparent 100%
    );
  mask-composite: intersect;
}

.services-label {
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.services-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 60px;
}

.services-title span {
  font-size: inherit;
  color: var(--orange);
}

/* Grid */
.services-grid {
  max-width: 900px;
  margin: 20px auto 0;
}

.services-hero {
  position: relative;
  display: flex;
  /*justify-content: center;*/
  align-items: center;
  margin: 20px auto 40px;
  max-width: 900px;
}

.services-hero-circle {
  position: absolute;
  top: 50%;
  right: 0;
  width: clamp(140px, 22vw, 260px);
  height: clamp(140px, 22vw, 260px);
  z-index: 0;
  pointer-events: none;
}

.services-huge {
  position: relative;
  z-index: 1;
  font-size: clamp(60px, 10vw, 130px);
  font-weight: 700;
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -2px;
  text-align: left;
}

.service-icon {
  display: flex;
  justify-content: center;
}

.service-card .service-link {
  /*display: flex;
  justify-content: center;*/
  display: inline-block;
  margin-top: 8px;
  padding: 14px 32px;
  background: var(--orange);
  color: var(--black);
  text-decoration: none;
  /*font-size: 13px;
  font-weight: 600;*/
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.3s;
}

/* Card */
.service-card {
  width: 300px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  overflow: visible;
  transition: none;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 22, 20, 0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 16px;
  z-index: 10;
  backdrop-filter: blur(4px);
}

.service-overlay ion-icon {
  font-size: 32px;
  color: rgba(255, 255, 255, 0.5);
}

.service-overlay p {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* Coming soon badge */
.service-overlay .coming-badge {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(158, 210, 227, 0.4);
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--blue);
  text-transform: uppercase;
}

/* Web dev card: overlay always visible */
.service-card:has(.service-overlay) .service-overlay {
  opacity: 1;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

/* Accent line top */
.service-accent {
  display: none;
}

.service-accent.orange {
  background: var(--orange);
}
.service-accent.blue {
  background: var(--blue);
}

.service-icon ion-icon {
  font-size: 36px;
}

.flachorange {
  color: var(--black);
}
.service-icon .graorange {
  color: var(--orange);
}

.service-card h3 {
  font-size: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
}

.service-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}

.service-card .service-note {
  font-size: 12px;
  color: var(--orange);
  font-style: italic;
  margin-top: -8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  white-space: nowrap;
}

.service-card .service-note ion-icon {
  font-size: 15px;
  flex-shrink: 0;
}

.service-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 8px;
  transition: color 0.2s;
}
.service-link:hover .flachorange {
  color: var(--orange);
}
.service-link.orange:hover {
  border: 1px solid var(--orange);
  background: none;
  color: var(--orange);
}

/* Mobile */
@media (max-width: 768px) {
  .services {
    padding: 60px 24px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-title {
    font-size: 32px;
  }
}

/* Work Section */
.work {
  padding: 100px 48px;
  text-align: center;
}

.work-label {
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.work-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 60px;
}

.work-title span {
  color: var(--orange);
  font-size: inherit;
}

/* Grid */
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

/* Folder */
.folder {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  position: relative;
}

.folder:hover {
  transform: translateY(-8px);
}

.topOfFolder {
  width: 45%;
  height: 30px;
  border-radius: 12px 12px 0 0;
  align-self: flex-start;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Folder Tab */
.folder-tab1 {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: none;
  position: absolute;
  top: 10px;
  left: 10%;
  width: 80%;
  height: 20px;
  border-radius: 12px 12px 0 0;
  margin-left: 0;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Folder Tab */
.folder-tab {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: none;
  position: absolute;
  top: 20px;
  left: 5%;
  width: 90%;
  height: 10px;
  border-radius: 12px 12px 0 0;
  margin-left: 0;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Folder Body */
.folder-body {
  border-radius: 0 12px 12px 12px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  position: relative;
  min-height: 220px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.FolOrange,
.folder-body.orange {
  background: var(--orange);
}
.FolBlue,
.folder-body.blue {
  background: var(--teal);
}

/* Folder Top */
.folder-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.folder-top ion-icon {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.8);
}

.folder-count {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* Folder Text */
.folder-body h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
}

.folder-body p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* Folder external link badge */
.folder-ext-link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.folder-ext-link span {
  font-size: inherit;
}

.folder-ext-link ion-icon {
  font-size: 20px;
}

.folder-arrow-icon {
  margin-left: auto;
  font-size: 18px !important;
  transition: transform 0.3s ease;
}

.folder:hover .folder-arrow-icon {
  transform: translate(3px, -3px);
}

.folder:hover .folder-body.orange {
  box-shadow: 0 16px 48px rgba(255, 63, 26, 0.4);
}

.folder:hover .folder-body.blue {
  box-shadow: 0 16px 48px rgba(68, 121, 128, 0.5);
}

/* Work CTA */
.work-cta {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.work-cta p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.work-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.work-cta-btn.outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.work-cta-btn.outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.work-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: none;
  background: var(--orange);
  color: var(--black);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.work-cta-btn ion-icon {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.work-cta-btn:hover {
  border: 1px solid var(--orange);
  color: var(--orange);
  background: none;
}

.work-cta-btn:hover ion-icon {
  transform: translateX(4px);
}

/* ============================
   Project Cards (individual)
   ============================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.project-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 63, 26, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.project-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--black);
}

.project-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.project-card:hover .project-cover img {
  transform: scale(1.06);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(27, 29, 27, 0.9) 0%,
    rgba(27, 29, 27, 0) 55%
  );
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-view {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--orange);
  padding: 8px 14px;
  border-radius: 999px;
}

.project-view ion-icon {
  font-size: 14px;
}

.project-info {
  padding: 18px 20px 22px;
}

.project-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.project-info p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* Behance CTA card - matches grid rhythm */
.project-card-behance {
  text-decoration: none;
  background: var(--orange);
  border-color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.behance-card-inner {
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.behance-card-inner ion-icon {
  font-size: 34px;
  color: var(--white);
  margin-bottom: 6px;
}

.behance-card-inner h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
}

.behance-card-inner p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.behance-link {
  margin-top: 10px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding-bottom: 2px;
}

.behance-link ion-icon {
  margin-left: 10px;
  font-size: 15px;
  margin-bottom: 0;
}

.project-card-behance:hover {
  transform: translateY(-6px);
  border-color: var(--white);
  box-shadow: 0 16px 40px rgba(255, 63, 26, 0.35);
}

/* ============================
   Portfolio Lightbox
   ============================ */
.portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
}

.portfolio-lightbox.open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 70px;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  user-select: none;
  animation: lightboxFade 0.25s ease;
}

@keyframes lightboxFade {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.lightbox-download {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.lightbox-download:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-nav:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

.lightbox-counter {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 16px;
  border-radius: 999px;
}

.lightbox-full-btn {
  position: absolute;
  bottom: 18px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--orange);
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-full-btn:hover {
  background: none;
  border: 1px solid var(--orange);
  color: var(--orange);
}

.lightbox-full-btn ion-icon {
  font-size: 14px;
}

@media (max-width: 768px) {
  .lightbox-full-btn {
    right: auto;
    left: 16px;
    padding: 7px 12px;
    font-size: 10px;
  }
  .lightbox-full-btn span {
    display: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .work {
    padding: 60px 24px;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .work-title {
    font-size: 32px;
  }
  .work-cta {
    flex-direction: column;
    gap: 16px;
  }
  .lightbox-content {
    padding: 90px 16px 60px;
  }
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .lightbox-prev {
    left: 6px;
  }
  .lightbox-next {
    right: 6px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Contact Section */
.contact {
  padding: 100px 48px;
  display: flex;
  gap: 80px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  align-items: flex-end;
  -webkit-mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      black 5%,
      black 95%,
      transparent 100%
    ),
    linear-gradient(
      to right,
      transparent 0%,
      black 5%,
      black 95%,
      transparent 100%
    );
  -webkit-mask-composite: destination-in;
  mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      black 5%,
      black 95%,
      transparent 100%
    ),
    linear-gradient(
      to right,
      transparent 0%,
      black 5%,
      black 95%,
      transparent 100%
    );
  mask-composite: intersect;
}

/* Texture background */
.contact::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 63, 26, 0.3) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.contact::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(68, 121, 128, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Left */
.contact-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: space-between;
}

.contact-label {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--orange);
}

.contact-title {
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.contact-title span {
  color: var(--orange);
  font-size: inherit;
}

.contact-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* Info Items */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info a {
  text-decoration: none;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 20px;
  backdrop-filter: blur(8px);
}

.contact-item ion-icon {
  font-size: 20px;
  color: var(--orange);
  flex-shrink: 0;
}

.info-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.instaTag {
  text-transform: lowercase;
}

.contact-item a,
.contact-item p {
  font-size: 14px;
  color: var(--white);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--orange);
}

/* Right — Form */
.contact-right {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px 32px;
  backdrop-filter: blur(12px);
  justify-content: flex-end;
}

.contact-input,
.contact-textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 16px 20px;
  color: var(--white);
  font-size: 14px;
  outline: none;
  transition: border 0.3s;
  font-family: inherit;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: var(--orange);
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact-input option {
  background-color: var(--black);
  color: var(--white);
  font-size: 14px;
}

/* Submit Button */
.contact-btn {
  background: var(--orange);
  border: none;
  padding: 16px;
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.service-alert {
  visibility: hidden;
  height: 0;
  overflow: hidden;
  align-items: center;
  gap: 10px;
  background: rgba(180, 0, 0, 0.15);
  border: 1px solid rgba(180, 0, 0, 0.4);
  border-radius: 10px;
  padding: 0 18px;
  color: #ff6b6b;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.service-alert ion-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.service-alert.show {
  visibility: visible;
  height: auto;
  padding: 14px 18px;
  display: flex;
}

.contact-whatsapp-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
}

.contact-whatsapp-note ion-icon {
  color: #25d366;
  font-size: 16px;
}

.contact-btn:hover {
  background: transparent;
  color: var(--orange);
  border: 1px solid var(--orange);
}

/* Mobile */
@media (max-width: 768px) {
  .contact {
    flex-direction: column;
    padding: 60px 24px;
    gap: 48px;
  }

  .contact-title {
    font-size: 36px;
  }

  .contact-left,
  .contact-right {
    width: 100%;
    flex: none;
  }

  .contact-right {
    padding: 24px 20px;
  }

  .contact-input,
  .contact-textarea,
  .contact-btn {
    width: 100%;
    box-sizing: border-box;
  }

  .contact-item {
    width: 100%;
    box-sizing: border-box;
  }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
  .contact {
    flex-direction: column;
    padding: 80px 48px;
    gap: 48px;
  }

  .contact-left,
  .contact-right {
    width: 100%;
    flex: none;
  }
}

/* ── Reviews Section ── */
.reviews {
  padding: 100px 80px;
  background: var(--black);
  overflow: hidden;
}

.reviews-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.reviews-title {
  text-align: center;
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 60px;
}

.reviews-title span {
  color: var(--orange);
  font-size: inherit;
}

.reviews-carousel {
  overflow: hidden;
  width: 100%;
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
  min-width: calc((100% - 48px) / 3);
  background: #1e201e;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
  margin: 50px 0;
}

.review-card:hover {
  border-color: rgba(255, 63, 26, 0.3);
  transform: translateY(-4px);
}

.review-stars {
  color: var(--orange);
  font-size: 18px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  flex-wrap: wrap;
  gap: 8px;
}

.review-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.review-verify {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.review-verify ion-icon {
  font-size: 14px;
}

.review-verify:hover {
  color: var(--orange);
}

/* Controls */
.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.rev-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.rev-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.reviews-dots {
  display: flex;
  gap: 8px;
}

.rev-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.2s;
}

.rev-dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

/* Mobile */
@media (max-width: 1023px) {
  .review-card {
    min-width: calc((100% - 24px) / 2);
  }
}

@media (max-width: 639px) {
  .reviews {
    padding: 60px 24px;
  }
  .reviews-title {
    font-size: 28px;
  }
  .review-card {
    min-width: 100%;
  }
}

/* Reviews verify note */
.reviews-verify-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.5px;
  margin-top: -40px;
}

.reviews-verify-note ion-icon {
  font-size: 14px;
  color: var(--orange);
  flex-shrink: 0;
}

.reviews-verify-note a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  font-size: inherit;
}

.reviews-verify-note a:hover {
  text-decoration: underline;
}

.reviews-verify-note strong {
  color: rgba(255, 255, 255, 0.6);
  font-size: inherit;
}

/* ── Pricing Section ── */
.pricing {
  padding: 100px 80px;
}

.pricing-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pricing-title {
  text-align: center;
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.pricing-title span {
  color: var(--orange);
  font-size: inherit;
}

.pricing-note {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 1px;
  margin-bottom: 60px;
  text-transform: uppercase;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: #1a1c1a;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 63, 26, 0.2);
}

.pricing-card.featured {
  border-color: var(--orange);
  background: #1e1a18;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.pricing-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  flex: 1;
}

.pricing-price {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.pricing-price span {
  font-size: 14px;
  color: var(--orange);
  font-weight: 600;
  margin-left: 4px;
}

.pricing-deliverables {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-deliverables li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.pricing-deliverables li ion-icon {
  font-size: 16px;
  color: var(--orange);
  flex-shrink: 0;
}

.pricing-meta {
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 12px !important;
  padding-top: 4px;
}

.pricing-meta ion-icon {
  color: rgba(255, 255, 255, 0.3) !important;
}

.pricing-boundary {
  color: rgba(255, 255, 255, 0.25) !important;
  text-decoration: line-through;
  font-size: 12px !important;
}

.pricing-boundary ion-icon {
  color: rgba(255, 255, 255, 0.2) !important;
}

.pricing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: transparent;
  border: 1px solid var(--orange);
  border-radius: 10px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pricing-btn:hover {
  background: var(--orange);
  color: var(--black);
}

.pricing-btn.featured-btn {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.pricing-btn.featured-btn:hover {
  background: #e03510;
}

.pricing-btn ion-icon {
  font-size: 18px;
}

.pricing-footer {
  text-align: center;
  margin-top: 48px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pricing-footer ion-icon {
  color: var(--orange);
  font-size: 16px;
}

.pricing-footer a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  font-size: inherit;
}

.pricing-footer a:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 1023px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .pricing-card {
    cursor: pointer;
    gap: 0;
    padding: 20px 20px;
  }

  .pricing-header {
    padding-bottom: 0 !important;
    border-bottom: none !important;
  }

  .pricing-card.open .pricing-header {
    padding-bottom: 16px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
  }

  .pricing-card .pricing-body {
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 0.4s ease,
      padding 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .pricing-card.open .pricing-body {
    max-height: 700px;
    padding-top: 16px;
  }

  .pricing-chevron {
    display: block !important;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.3s ease;
    margin-left: 12px;
    flex-shrink: 0;
  }

  .pricing-card.open .pricing-chevron {
    transform: rotate(180deg);
    color: var(--orange);
  }
}

@media (min-width: 1024px) {
  .pricing-chevron {
    display: none !important;
  }
  .pricing-body {
    display: contents;
  }
}

@media (max-width: 768px) {
  .pricing {
    padding: 60px 24px;
  }
  .pricing-title {
    font-size: 28px;
  }
}

/* ============================
   Marquee Divider (name band)
   ============================ */
.marquee-wrap {
  width: calc(100% + (2 * var(--page-margin)));
  margin-left: calc(-1 * var(--page-margin));
  margin-right: calc(-1 * var(--page-margin));
  overflow: hidden;
  padding: 90px 0;
}

.marquee-divider {
  background: var(--orange);
  width: 112%;
  margin-left: -6%;
  transform: rotate(-2deg);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 5px 0;
  animation: marqueeScroll 24s linear infinite;
}

.marquee-item {
  font-size: 22px;
  /*font-weight: 800;
  text-transform: uppercase;*/
  letter-spacing: -2px;
  color: var(--black);
  white-space: nowrap;
  padding: 0 30px;
}

.marquee-dot img {
  width: 10px;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .marquee-wrap {
    padding: 50px 0;
  }
  .marquee-divider {
    width: 130%;
    margin-left: -15%;
  }
  .marquee-item {
    font-size: 16px;
    padding: 0 14px;
  }
  .marquee-track {
    animation-duration: 16s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* ============================
   Pricing → Brand Brief CTA
   ============================ */
.pricing-brief-cta {
  text-align: center;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.pricing-brief-cta p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 768px) {
  .pricing-brief-cta {
    margin-top: 40px;
  }
}

/* ============================
   Pricing Add-Ons (compact)
   ============================ */
.addon-section {
  max-width: 900px;
  margin: 56px auto 0;
}

.addon-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.addon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.addon-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.addon-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.addon-top ion-icon {
  font-size: 18px;
  color: var(--orange);
  flex-shrink: 0;
}

.addon-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  flex: 1;
}

.addon-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
}

.addon-price span {
  font-size: 10px;
  opacity: 0.8;
}

.addon-desc {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.addon-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.addon-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.addon-meta ion-icon {
  font-size: 12px;
  color: var(--orange);
}

.addon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}

.addon-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.addon-btn ion-icon {
  font-size: 14px;
}

@media (max-width: 640px) {
  .addon-grid {
    grid-template-columns: 1fr;
  }
}
