/* Micromatching Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  background: #000712;
  color: white;
  overflow-x: hidden;
  /* Prevent horizontal scroll issues on mobile */
}

a,
button {
  transition: all 0.3s ease-in-out;
}

/* WRAPPER WITH BACKGROUND */
.hero-wrapper {
  background-image: url("img/background.png");
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: 889px;
  /* padding: 0 60px; */
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  /* backdrop-filter: blur(10px); */
  transition: 0.3s;
  width: 100%;
  padding: 20px 0px;
  transition: 0.3s;
}

.header.scrolled {
  background: #000712;
  backdrop-filter: blur(10px);
  /* padding: 20px 0px; */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
  padding: 10px 80px;
}

.logo img {
  width: 240px;
}

.nav {
  margin-left: 250px;
}

.nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 20px;
  display: inline-block;
  transition: all 0.3s ease;
}

.nav a:hover {
  color: #ff2e00;
  transform: translateY(-2px);
}

.nav ul li a {
  position: relative;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s ease;
}

/* Hover effect */
.nav ul li a:hover {
  color: #ff2e00;
}

/* Underline animation */
.nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #ff2e00;
  transition: width 0.3s ease;
}

.nav ul li a:hover::after {
  width: 100%;
}

/* Active page */
.nav ul li a.active {
  color: #ff2e00;
}

.nav ul li a.active::after {
  width: 100%;
}

.header-btn button {
  background: #ff2e00;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 15px;
  cursor: pointer;
  font-size: 20px;
  width: 238px;
  height: 59px;
  font-weight: 600;
  margin-right: -30px;
  box-shadow: 0 4px 15px rgba(255, 46, 0, 0.2);
}

.header-btn button:hover {
  background: #ff451a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 46, 0, 0.4);
}

/* HERO */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 90vh;
  margin-top: -100px;
}

.hero-left {
  width: 50%;
  margin-top: 165px;
}

.hero-left h1 {
  font-size: 48px;
  line-height: 1.4;
  font-weight: 700;
}

.hero-left span {
  color: #ff2e00;
}

.hero-left h2 {
  color: #ff4d00;
  margin: 20px 0;
  font-size: 48px;
}

.hero-left p {
  font-size: 28px;
  line-height: 1.5;
  margin-bottom: 30px;
  max-width: 600px;
  font-weight: 500;
}

.hero-cards {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}

.card {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 280px;
  height: 103px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  text-decoration: none;
  color: white !important;
}

.card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ff2e00;
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.brand-img {
  width: 82px;
  height: 72px;
  object-fit: contain;
}

/* SECOND CARD IMAGE */
.creator-img {
  width: 82px;
  height: 72px;
  /* margin-left: -0px; */
  object-fit: contain;
}

.card div {
  flex: 1;
}

.card a {
  margin-left: -10px;
}

.card a img {
  width: 29px;
  height: 29px;
  margin-right: -18px;
}

.card h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
}

.card p {
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
}

.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #ff2e00;
  color: white;
  border: none;
  padding: 10px 32px;
  border-radius: 15px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  height: 59px;
  width: 267px;
  box-shadow: 0 4px 15px rgba(255, 46, 0, 0.2);
  text-decoration: none;
}

.download-btn:hover {
  background: #ff451a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 46, 0, 0.4);
}

.download-btn span {
  white-space: nowrap;
  color: white;
}

.left-icon {
  width: 31px;
  height: 31px;
}

.right-icon {
  width: 16px;
  height: 16px;
}

.hero-right img {
  width: 668px;
  height: 610px;
  transform: translateY(120px) translateX(-90px);
}

.trusted-section {
  display: flex;
  margin-top: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  width: 1296px;
  height: 106px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  /* backdrop-filter: blur(8px); */
}

/* LEFT TEXT */
.trusted-left p {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
}

/* RIGHT LOGOS */
.trusted-right {
  flex: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 30px;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: marquee 15s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 20px));
  }
}

.marquee-content:hover {
  animation-play-state: paused;
}

/* LOGO SIZE */
.marquee-content img {
  width: 130px;
  height: 53px;
  object-fit: contain;
  opacity: 0.9;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: auto;
  padding: 0 30px;
}

/* ========================= */
/* INDUSTRY SECTION */
/* ========================= */

.industry-section {
  padding: 80px 0px 40px 0px;
  background: #000712;
  text-align: center;
}

.small-heading {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.industry-section h2 {
  font-size: 52px;
  color: #fff;
  margin-bottom: 60px;
}

.industry-section h2 span {
  color: #ff3d00;
}

/* TABS CONTAINER */
.industry-tabs-container {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  align-items: flex-start;
}

.industry-nav {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  padding: 15px 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.tab-btn img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.tab-btn:hover,
.tab-btn.active {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ff3d00;
  box-shadow: 0 10px 25px rgba(255, 61, 0, 0.2);
  transform: translateX(5px);
}

.industry-tab-content {
  width: 75%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px;
  min-height: 500px;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Adjust showcase inside tab content */
.industry-tab-content .showcase-flex {
  gap: 30px;
  margin-top: 0;
}

.industry-tab-content .showcase-left {
  width: 100%;
}

.industry-tab-content .showcase-left p {
  width: 100%;
}

.industry-tab-content .showcase-right {
  width: 55%;
  margin-top: 0;
}

.industry-tab-content .big-img img {
  width: 100%;
  max-width: 240px;
  height: auto;
}

.industry-tab-content .small-images img {
  width: 100%;
  height: auto;
}

/* ===================================== */
/* SHOWCASE SECTION */
/* ===================================== */

.showcase-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding: 100px 0px;
  background: #000712;
  margin-top: -60px;
}

.showcase-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

/* LEFT */
.showcase-left {
  width: 100%;
  text-align: left;
}

.showcase-left h3 {
  font-size: 42px;
  line-height: 1.3;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
}

.showcase-left h3 span {
  color: #ff3d00;
}

.showcase-left p {
  color: #fff;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 20px;
  width: 100%;
}

.showcase-left ul {
  padding-left: 20px;
}

.showcase-left li {
  color: #fff;
  font-size: 24px;
  margin-bottom: 15px;
}

/* RIGHT */
.showcase-right {
  width: 70%;
  display: flex;
  gap: 10px;
  margin-top: 42px;
}

/* BIG IMAGE */
.big-img img {
  width: 278px;
  height: 334px;
  border-radius: 20px;
  object-fit: cover;
}

/* SMALL IMAGES GRID */
.small-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.small-images img {
  width: 213px;
  height: 160px;
  border-radius: 20px;
  object-fit: cover;
}

/* LAST IMAGE FULL WIDTH */
.small-images img:last-child {
  grid-column: span 2;
  width: 445px;
  height: 158px;
}

/* ===================================== */
/* BROKEN SECTION */
/* ===================================== */

.broken-section {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px 0px;
  background: #000712;
  margin-top: 40px;
}

.broken-flex {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT IMAGE */
.broken-left {
  width: 38%;
}

.broken-left img {
  width: 100%;
  border-radius: 28px;
}

/* RIGHT CONTENT */
.broken-right {
  width: 62%;
  text-align: left;
}

.mini-title {
  color: #fff;
  font-size: 24px;
  margin-bottom: 18px;
  font-weight: 500;
}

.broken-right h2 {
  color: #fff;
  font-size: 28px;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 40px;
  margin-top: -5px;
}

.broken-right h2 span {
  color: #ff3d00;
}

/* CARDS */
.broken-cards {
  display: flex;
  gap: 25px;
  margin-top: -30px;
  width: 100%;
  height: auto;
}

/* OLD CARD */
.old-way,
.new-way {
  flex: 1;
  padding: 35px;
  border-radius: 20px;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.old-way {
  background: #ff2e00;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.new-way {
  background: #2cafff;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.old-way:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: #ff3d00;
}

.new-way:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: #42a5ff;
}

.old-way h3,
.new-way h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.old-way p,
.new-way p {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}

.way-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* ===================================== */
/* HOW IT WORKS SECTION */
/* ===================================== */

.works-section {
  background: #000712;
  padding: 200px 0 60px;
  margin-top: -200px;
}

/* HEADING */
.works-heading {
  text-align: center;
  margin-bottom: 60px;
}

.works-heading p {
  color: #fff;
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 12px;
}

.works-heading h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
}

.works-heading h2 span {
  color: #ff3d00;
}

/* CARDS */
.works-cards {
  display: flex;
  gap: 25px;
}

/* SINGLE CARD */
.work-card {
  flex: 1;
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  padding: 35px 28px;
  height: 278px;
  width: 415px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  cursor: pointer;
}

.work-card:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.12);
  border-color: #ff3d00;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.work-card:hover .step-number {
  transform: scale(1.2) rotate(360deg);
  box-shadow: 0 0 20px rgba(255, 61, 0, 0.6);
}

/* STEP NUMBER */
.step-number {
  position: absolute;
  top: -18px;
  left: -10px;
  width: 45px;
  height: 45px;
  background: #ff3d00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 5;
}

.blue {
  background: #45a5ff;
}

.yellow {
  background: #ffb400;
}

/* TOP */
.work-top {
  display: flex;
  align-items: center;
  gap: 18px;

  margin-bottom: 25px;
}

.work-top img {
  width: 90px;
  height: 72px;
  object-fit: contain;
}

.work-top small {
  color: #cfcfcf;
  font-size: 18px;
  font-weight: 500;
}

.work-top h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

/* TEXT */
.work-card p {
  margin-top: -15px;
  color: #d4d4d4;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

/* ===================================== */
/* TRUST SECTION */
/* ===================================== */

.trust-section {
  background: #000712;
  padding: 60px 0;
}

/* MAIN CARD */
.trust-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  padding: 40px 50px;
  backdrop-filter: blur(1px);
  transition: all 0.5s ease;
}

.trust-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* LEFT */
.trust-left img {
  width: 180px;
  height: auto;
}

/* CONTENT */
.trust-content {
  flex: 1;
}

.trust-content p:first-child {
  color: #d4d4d4;
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.trust-content h2 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.trust-content h2 span {
  color: #ff3d00;
}

.trust-text {
  color: #d0d0d0;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
}

/* RIGHT */
.trust-right img {
  width: 180px;
  height: auto;
}

/* ===================================== */
/* FAQ SECTION */
/* ===================================== */

.wave-bg-wrapper {
  position: relative;
  background: #000712;
  overflow: hidden;
}

.wave-bg-wrapper::before {
  content: "";
  position: absolute;
  top: -400px;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("img/wave-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
}

.trust-section,
.faq-section {
  position: relative;
  z-index: 2;
  background: transparent;
}

.faq-section {
  padding: 80px 0 0px;
  margin-top: -100px;
}

.faq-section .container {
  position: relative;
  z-index: 2;
}

.faq-content {
  width: 80%;
  text-align: left;
  margin: 0 auto;
}

.faq-heading {
  text-align: center;
  margin-bottom: 40px;
}

.faq-heading p {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  opacity: 0.9;
}

.faq-heading h2 {
  color: #fff;
  font-size: 48px;
  /* Slightly smaller to fit better */
  font-weight: 700;
}

.faq-heading h2 span {
  color: #ff2e00;
}

.faq-main {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  min-height: 500px;
}

.faq-character {
  position: absolute;
  left: -30px;
  bottom: -50px;
  width: 100%;
  min-width: 550px;
  z-index: 3;
}

.faq-character img {
  width: 599px;
  height: 396px;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

.faq-list {
  width: 100%;
  /* Now takes full width of faq-content column */
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-question span {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

.faq-icon {
  font-size: 24px;
  color: #fff;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease-out,
    padding 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 30px 25px;
}

.faq-answer p {
  color: #d0d0d0;
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
}

/* ===================================== */
/* CTA SECTION */
/* ===================================== */
.cta-section {
  padding: 60px 0;
  margin-top: 0;
  background: #000712;
}

.cta-card {
  position: relative;
  background: url("img/campaing-bg.png");
  background-size: cover;
  background-position: center;
  padding: 50px 80px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* Push content to right */
  overflow: hidden;
  /* For rocket overlap */
  /* box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4); */
  border-radius: 25px;
  /* width: 1299px; */
  min-height: 300px;
  height: auto;
  width: 100%;
  max-width: 1400px;
}

.cta-rocket {
  position: absolute;
  left: 20px;
  bottom: -2px;
  width: 450px;
  z-index: 2;
}

.cta-rocket img {
  width: 418px;
  height: 276px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.cta-content {
  width: 70%;
  text-align: left;
  padding-left: 10px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  /* margin-bottom: 20px; */
}

.cta-content h2 span {
  color: #ffb800;
  /* Yellowish orange from screenshot */
}

.cta-content p {
  font-size: 18px;
  color: #000;
  opacity: 0.9;
  /* margin-bottom: 40px; */
  max-width: 500px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
}

.cta-buttons img {
  height: 50px;
  width: 167px;
  transition: transform 0.3s;
}

.cta-buttons a:hover {
  opacity: 0.8;
  transform: translateY(-8px);
}

/* ===================================== */
/* FOOTER */
/* ===================================== */
.footer {
  position: relative;
  background: url("img/footer-bg.png");
  background-size: cover;
  background-position: center bottom;
  /* Glowing lines are at bottom */
  padding: 80px 0 0;
  /* Remove bottom padding to let copyright bar hit edge */
  text-align: center;
  color: #fff;
  width: 100%;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  /* Reduced gap to match screenshot */
}

.footer-logo img {
  margin-top: -50px;
  width: 326px;
  height: 90px;
}

.footer-nav {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #ff3d00;
  transform: translateY(-2px);
}

.footer-socials {
  display: flex;
  gap: 25px;
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  backdrop-filter: blur(10px);
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  border-color: #ff3d00;
  box-shadow: 0 5px 15px rgba(255, 61, 0, 0.2);
}

.social-img-fbt {
  width: 12px;
  height: 25px;
}

.social-img-inst {
  width: 25px;
  height: 25px;
}

.social-img-tt {
  width: 20px;
  height: 26px;
}

.footer-bottom {
  width: 100%;
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
}

.footer-bottom p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  padding: 20px 0;
  width: 100%;
  text-align: center;
}

/* ===================================== */
/* ANIMATIONS */
/* ===================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal.active {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Fallback for terms/privacy if they don't reveal */
.privacy-page .reveal,
.terms-page .reveal {
  opacity: 1;
  transform: none;
}

/* ===================================== */
/* RESPONSIVENESS */
/* ===================================== */

@media (max-width: 1200px) {
  .container {
    padding: 0 40px;
  }

  .hero-left h1 {
    font-size: 40px;
  }

  .hero-right img {
    width: 500px;
    height: auto;
    transform: translateY(100px) translateX(-40px);
  }

  .nav {
    margin-left: 100px;
  }

  .trusted-section {
    width: 100%;
    flex-direction: column;
    height: auto;
    padding: 30px;
  }

  .trusted-right {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }

  .works-cards,
  .mode-cards,
  .benefits-flex,
  .creator-benefits-flex {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .pricing-table-wrapper {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .brand-hero,
  .creator-hero {
    gap: 50px;
  }
}

@media (max-width: 992px) {
  .hero,
  .brand-hero,
  .creator-hero,
  .contact-hero {
    flex-direction: column;
    text-align: center;
    margin-top: 0;
    min-height: auto;
    height: auto;
    gap: 40px;
    padding-top: 60px;
  }

  .hero-wrapper {
    min-height: auto !important;
  }

  .hero-left,
  .brand-hero .hero-left,
  .creator-hero .hero-left {
    width: 100%;
    margin-top: 0;
  }

  .hero-left p {
    margin: 0 auto 30px;
  }

  .hero-cards {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-right img,
  .brand-hero .hero-right img,
  .creator-hero .hero-right img {
    width: 80%;
    height: auto;
    transform: none;
    margin: 40px auto 0;
  }

  .showcase-flex,
  .broken-flex,
  .trust-card,
  .faq-main,
  .problem-card,
  .creator-problem-card {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .showcase-left,
  .broken-right,
  .faq-content,
  .trust-content,
  .problem-right,
  .creator-problem-left {
    width: 100%;
    text-align: center;
  }

  .problem-left img,
  .creator-problem-right img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .showcase-left p,
  .broken-right h2,
  .faq-heading,
  .trust-text,
  .problem-right h2,
  .creator-problem-left h2 {
    width: 100%;
    margin: 0 auto 20px;
  }

  .showcase-right,
  .broken-left,
  .trust-left,
  .trust-right,
  .faq-character {
    width: 100%;
    position: static;
    display: flex;
    justify-content: center;
  }

  .faq-character img {
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  .cta-card {
    flex-direction: column;
    height: auto;
    padding: 40px 20px;
    justify-content: center;
    text-align: center;
    overflow: hidden;
  }

  .cta-rocket {
    position: static;
    width: 80%;
    margin-bottom: 20px;
  }

  .cta-content {
    width: 100%;
    align-items: center;
    padding: 0;
  }

  .cta-buttons {
    justify-content: center;
  }

  .mode-cards,
  .benefits-flex,
  .creator-benefits-flex {
    flex-direction: column;
    align-items: center;
  }

  .mode-card,
  .benefit-card,
  .creator-benefit-card {
    width: 100% !important;
    max-width: 500px;
    height: auto !important;
  }

  /* Industry Tabs Responsive */
  .industry-tabs-container {
    flex-direction: column;
    align-items: stretch;
  }

  .industry-nav {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 15px;
  }

  .tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 16px;
    padding: 10px 15px;
  }

  .tab-btn img {
    width: 25px;
    height: 25px;
  }

  .industry-tab-content {
    width: 100%;
    padding: 30px 20px;
    min-height: auto;
  }

  .industry-tab-content .showcase-flex {
    flex-direction: column;
    text-align: center;
  }

  .industry-tab-content .showcase-left,
  .industry-tab-content .showcase-right {
    width: 100%;
  }

  .industry-tab-content .showcase-right {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .industry-tab-content .showcase-left p {
    margin: 0 auto 20px;
  }

  .industry-tab-content .showcase-left ul {
    text-align: left;
    display: inline-block;
  }

  .industry-tab-content .big-img {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .industry-tab-content .big-img img {
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
  }

  .industry-tab-content .small-images {
    width: 100%;
    max-width: 400px;
  }

  .industry-tab-content .small-images img,
  .small-images img:last-child {
    width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 15px 20px;
    justify-content: space-between;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(0, 7, 18, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 999;
    margin-left: 0;
  }

  .nav.active {
    right: 0;
  }

  .nav ul {
    flex-direction: column;
    gap: 40px;
  }

  .nav ul li a {
    font-size: 24px;
  }

  .header-btn {
    display: none;
    /* Hide button in header, maybe move to nav */
  }

  .no-scroll {
    overflow: hidden;
  }

  .mobile-menu-btn {
    display: block;
    cursor: pointer;
    z-index: 1001;
  }

  .mobile-menu-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background: #fff;
    margin: 6px 0;
    transition: 0.4s;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .logo img {
  }

  .hero-left h1 {
    font-size: 32px;
  }

  .industry-section h2 {
    font-size: 36px;
  }

  .scroll-left,
  .scroll-right {
    display: none;
    /* Scrolling works by touch on mobile */
  }

  .industry-cards {
    padding: 20px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 28px;
  }

  .hero-left p {
    font-size: 18px;
  }

  .card {
    width: 100%;
  }

  .download-btn {
    width: 100%;
  }

  .work-card {
    width: 100%;
    height: auto;
  }

  .cta-content h2 {
    font-size: 24px;
  }
}

/* ========================================= */
/* RESPONSIVE FIXES */
/* ========================================= */

/* LARGE LAPTOPS */
@media (max-width: 1400px) {
  .trusted-section {
    width: 100%;
  }

  .hero-right img {
    width: 560px;
    height: auto;
    transform: translateY(80px) translateX(-20px);
  }

  .industry-card {
    width: 220px;
    min-width: 220px;
  }
}

/* TABLETS */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .header {
    padding: 20px;
  }

  .nav {
    margin-left: 0;
  }

  .nav ul {
    gap: 20px;
  }

  .nav ul li a {
    font-size: 16px;
  }

  .header-btn button {
    width: 180px;
    font-size: 16px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 40px;
    margin-top: 0;
  }

  .hero-left {
    width: 100%;
    margin-top: 50px;
  }

  .hero-left h1 {
    font-size: 42px;
  }

  .hero-left p {
    font-size: 22px;
    margin: auto;
  }

  .hero-cards {
    justify-content: center;
    flex-wrap: wrap;
  }

  .download-btn {
    margin: auto;
  }

  .hero-right img {
    width: 90%;
    max-width: 500px;
    transform: none;
    margin-top: 30px;
  }

  .trusted-section {
    flex-direction: column;
    height: auto;
    text-align: center;
    gap: 25px;
    padding: 25px;
  }

  .trusted-right {
    flex-wrap: wrap;
    justify-content: center;
  }

  .showcase-flex,
  .broken-flex,
  .faq-main,
  .trust-card {
    flex-direction: column;
    text-align: center;
  }

  .showcase-left,
  .showcase-right,
  .broken-left,
  .broken-right,
  .faq-content,
  .trust-content {
    width: 100%;
  }

  .showcase-left p {
    width: 100%;
  }

  .showcase-right {
    justify-content: center;
    flex-wrap: wrap;
  }

  .faq-character {
    position: static;
    width: 100%;
    text-align: center;
  }

  .faq-character img {
    width: 300px;
    height: auto;
  }

  .broken-cards {
    flex-direction: column;
    height: auto;
  }

  .works-cards {
    flex-wrap: wrap;
    justify-content: center;
  }

  .work-card {
    width: 100%;
    max-width: 500px;
    height: auto;
  }

  .cta-card {
    flex-direction: column;
    height: auto;
    overflow: hidden;
    padding: 40px 20px;
    text-align: center;
  }

  .cta-content {
    width: 100%;
    align-items: center;
  }

  .cta-rocket {
    position: static;
    width: 100%;
    text-align: center;
  }

  .cta-rocket img {
    width: 250px;
    height: auto;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .header {
    padding: 15px;
  }

  .logo img {
    width: 180px;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #000712;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    z-index: 999;
  }

  .nav.active {
    right: 0;
  }

  .nav ul {
    flex-direction: column;
    gap: 30px;
  }

  .header-btn {
    display: none;
  }

  .hero-left h1 {
    font-size: 34px;
    line-height: 1.3;
  }

  .hero-left p {
    font-size: 18px;
    margin-top: 20px;
  }

  .hero-cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 100%;
    max-width: 350px;
  }

  .download-btn {
    width: 100%;
    max-width: 350px;
  }

  .industry-section h2 {
    font-size: 34px;
  }

  .industry-card {
    width: 200px;
    min-width: 200px;
  }

  .industry-card p {
    font-size: 18px;
  }

  .showcase-left h3,
  .broken-right h2,
  .faq-heading h2,
  .works-heading h2,
  .trust-content h2,
  .cta-content h2 {
    font-size: 30px;
    line-height: 1.4;
  }

  .showcase-left p,
  .trust-text,
  .work-card p,
  .old-way p,
  .new-way p {
    font-size: 16px;
  }

  .small-images {
    grid-template-columns: 1fr;
  }

  .small-images img,
  .small-images img:last-child {
    width: 100%;
    height: auto;
  }

  .big-img img {
    width: 100%;
    height: auto;
  }

  .faq-question span {
    font-size: 16px;
  }

  .faq-answer p {
    font-size: 15px;
  }

  .footer-logo img {
    width: 220px;
    height: auto;
  }

  .footer-nav a {
    font-size: 18px;
  }

  .faq-section {
    padding-bottom: 20px;
    margin-bottom: 0;
  }

  .cta-section,
  .creator-cta {
    margin-top: 0;
    padding-top: 20px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-left h1 {
    font-size: 28px;
  }

  .hero-left p {
    font-size: 16px;
  }

  .card {
    padding: 15px;
    gap: 10px;
  }

  .brand-img {
    width: 60px;
    height: 60px;
  }

  .creator-img {
    width: 60px;
    height: 60px;
  }

  .card h3 {
    font-size: 16px;
  }

  .card p {
    font-size: 12px;
  }

  .industry-card {
    width: 180px;
    min-width: 180px;
    min-height: 180px;
  }

  .industry-card img {
    width: 90px;
    height: 90px;
  }

  .industry-card p {
    font-size: 16px;
  }

  .work-top {
    flex-direction: column;
    text-align: center;
  }

  .work-top img {
    width: 100px;
    height: auto;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons img {
    width: 150px;
    height: auto;
  }

  .footer-socials {
    gap: 15px;
  }

  .social-btn {
    width: 50px;
    height: 50px;
  }

  .footer-bottom p {
    font-size: 14px;
    padding: 15px;
  }
}

/* =========================================================
   SAFE RESPONSIVE FIXES (DOES NOT CHANGE DESKTOP DESIGN)
========================================================= */

html,
body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  /* Header mobile padding on scroll */
  .header.scrolled {
    padding: 10px 20px !important;
  }

  /* Reset massive negative desktop margins for responsiveness */
  .showcase-section,
  .broken-section,
  .works-section,
  .cta-section {
    margin-top: 0 !important;
    padding: 60px 0 !important;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    margin-top: 0;
    padding-top: 40px;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .hero-left {
    margin-top: 50px;
  }

  .hero-left p {
    margin: 0 auto 30px;
    max-width: 100%;
  }

  .hero-right img {
    width: 80%;
    max-width: 500px;
    height: auto;
    transform: none;
    margin: 30px auto 0;
  }

  .hero-cards {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  /* Hero Selection Card responsiveness to prevent text overflow */
  .card {
    height: auto !important;
    min-height: 103px !important;
    max-width: 340px;
    width: 100%;
  }

  .download-btn {
    margin: auto;
  }

  .trusted-section {
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .trusted-right {
    flex-wrap: wrap;
    justify-content: center;
  }

  .showcase-flex,
  .broken-flex,
  .trust-card,
  .faq-main {
    flex-direction: column;
    text-align: center;
  }

  .showcase-left,
  .showcase-right,
  .broken-left,
  .broken-right,
  .faq-content,
  .trust-content {
    width: 100%;
  }

  .showcase-left p {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  /* Center the showcase list block while keeping the bullet points aligned beautifully next to the text */
  .showcase-left ul {
    display: inline-block;
    text-align: left;
    padding-left: 20px;
    margin: 0 auto 20px;
  }

  .showcase-right {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Broken section cards stacking */
  .broken-cards {
    flex-direction: column;
    height: auto;
    gap: 20px;
    margin-top: 10px;
  }

  .old-way,
  .new-way {
    padding: 30px 20px;
    height: auto !important;
  }

  /* How It Works Section stack and flex-squeeze fix */
  .works-cards {
    flex-direction: column !important;
    align-items: center !important;
    gap: 30px !important;
  }

  .work-card {
    flex: none !important;
    width: 100% !important;
    max-width: 500px !important;
    height: auto !important;
    padding: 30px 20px !important;
  }

  .work-card p {
    margin-top: 10px !important;
    font-size: 16px !important;
  }

  .faq-character {
    position: static;
    width: 100%;
    min-width: auto;
    display: flex;
    justify-content: center;
  }

  .faq-character img {
    width: 320px;
    height: auto;
  }

  /* CTA Section Mobile Optimization */
  .cta-card {
    overflow: hidden;
    flex-direction: column;
    height: auto;
    padding: 40px 20px;
    text-align: center;
  }

  .cta-content {
    width: 100%;
    align-items: center;
    padding-left: 0;
  }

  .cta-buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .cta-rocket {
    position: static;
    width: 250px;
    margin-bottom: 20px;
  }

  .cta-rocket img {
    width: 100%;
    height: auto;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {
  .header {
    padding: 15px 20px;
  }

  .logo img {
    width: 180px;
  }

  .mobile-menu-btn {
    display: block;
    cursor: pointer;
    z-index: 1001;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #000712;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    z-index: 999;
    margin-left: 0;
  }

  .nav.active {
    right: 0;
  }

  .nav ul {
    flex-direction: column;
    gap: 30px;
  }

  .header-btn {
    display: none;
  }

  .hero-left h1 {
    font-size: 34px;
    line-height: 1.3;
  }

  .hero-left p {
    font-size: 18px;
  }

  .card {
    width: 100%;
    max-width: 350px;
  }

  .download-btn {
    width: 100%;
    max-width: 350px;
  }

  .industry-section h2,
  .showcase-left h3,
  .broken-right h2,
  .faq-heading h2,
  .works-heading h2,
  .trust-content h2,
  .cta-content h2 {
    font-size: 32px;
  }

  .industry-card {
    width: 180px;
    min-width: 180px;
  }

  .scroll-left,
  .scroll-right {
    display: none;
  }

  .small-images {
    grid-template-columns: 1fr;
  }

  .small-images img,
  .small-images img:last-child,
  .big-img img {
    width: 100%;
    height: auto;
  }

  .faq-question span {
    font-size: 16px;
  }

  .faq-answer p {
    font-size: 15px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 20px;
  }

  .small-images img:first-child {
    width: 100%;
    height: 400px;
    max-height: 400px;
    height: auto;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-left h1 {
    font-size: 28px;
  }

  .hero-left p {
    font-size: 16px;
  }

  .card {
    padding: 15px;
  }

  .industry-card {
    width: 160px;
    min-width: 160px;
    min-height: 170px;
  }

  .industry-card img {
    width: 90px;
    height: 90px;
  }

  .industry-card p {
    font-size: 15px;
  }

  .work-top {
    flex-direction: column;
    text-align: center;
  }

  .work-top img {
    width: 100px;
    height: auto;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .cta-buttons img {
    width: 150px;
    height: auto;
  }

  .cta-content h2 {
    font-size: 24px;
  }

  .footer-logo img {
    width: 220px;
    height: auto;
  }

  .footer-bottom p {
    font-size: 14px;
  }

  .small-images img:first-child {
    height: 170px;
    object-fit: fill;
    /* margin-bottom: -40px; */
  }
}

@media (max-width: 992px) {
  /* 1. Card Container & Gradient Background */
  .cta-card {
    flex-direction: column !important; /* Stack layout vertically */
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 40px 30px !important;
    /* Red to Blue vertical gradient matching the screenshot */
    background: linear-gradient(180deg, #ff3b00 0%, #3b99ff 100%) !important;
    position: relative;
    overflow: visible !important; /* Allows rocket flames to look organic */
  }

  /* 2. Rocket Positioning */
  .cta-rocket {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 290px; /* Scales down the rocket nicely for mobile screens */
    margin: 0 auto 20px auto !important;
    display: flex;
    justify-content: center;
    z-index: 2;
  }

  .cta-rocket img {
    width: 100% !important;
    height: auto !important;
  }

  /* 3. Text & Content Adjustments */
  .cta-content {
    width: 100% !important;
    text-align: left !important; /* Keeps text left-aligned as per image */
    align-items: flex-start !important; /* Align button flexbox to the left */
    padding: 0 !important;
    gap: 15px !important; /* Tighter spacing for mobile viewports */
  }

  .cta-content h2 {
    font-size: 22px !important; /* Responsive text sizing */
    color: #000000 !important; /* High contrast black */
  }

  .cta-content p {
    font-size: 16px !important;
    color: #000000 !important;
    max-width: 100%;
  }

  /* 4. Play Store / App Store Buttons Alignment */
  .cta-buttons {
    display: flex !important;
    flex-direction: row !important; /* Forces horizontal alignment */
    justify-content: flex-start !important; /* Aligns them to the left */
    align-items: center !important;
    gap: 10px !important; /* Space between buttons */
    width: 100% !important;
  }
  .cta-buttons a {
    flex: 0 1 auto !important; /* Prevents links from stretching or collapsing breaks */
  }

  .cta-buttons img {
    height: 40px !important; /* Slightly smaller store badges for smaller screens */
    width: auto !important;
  }
}
/* ---------------------------------------------------------------------------------- */
/* brand page css */
.brand-hero {
  padding-top: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 150px;
  height: 100px;
}

.brand-hero .hero-tag {
  font-size: 24px;
  font-style: 600;
}

.brand-hero .hero-left h1 {
  font-size: 48px;
  line-height: 1.4;
  font-weight: 600;
}

.brand-hero .hero-right img {
  width: 796px;
  height: 498px;
  /* animation: floatBrand 6s ease-in-out infinite; */
}

.brand-hero .hero-buttons {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-hero .primary-btn:hover {
  background: #ff451a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 46, 0, 0.4);
}

.brand-hero .secondary-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.primary-btn,
.secondary-btn {
  padding: 12px 20px;
  border: none;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  text-decoration: none;
}

/* Primary */
.primary-btn {
  background: #ff2e00;
  color: white;
  width: 263px;
  height: 59px;
  font-size: 20px;
  font-weight: 600;
  padding: 12px 30px;
}

/* Secondary */
.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  backdrop-filter: blur(8px);

  color: #fff;
  width: 258px;
  height: 59px;

  font-size: 20px;
  font-weight: 600;
}

/* ===================================== */
/* probelm section */
/* ===================================== */
.problem-section {
  margin-top: -40px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: #000712; */
}

.problem-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 60px 40px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.problem-right {
  width: 100%;
  max-width: 1000px;
}

.problem-right h2 {
  color: white;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
}

.problem-right p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.problem-right span {
  color: #ff3d00;
}

.problem-small {
  font-size: 16px;
  font-weight: 600;
  color: #ff3d00;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* ===================================== */
/* campaign section */
/* ===================================== */

.campaign-modes {
  /* margin-top: 100px; */
  padding: 50px;
  background-color: #000712;
}

/* HEADING */
.section-heading {
  text-align: center;
}

.section-heading p {
  font-size: 20px;
  font-weight: 500;
  color: white;
  margin-bottom: 10px;
}

.section-heading h2 {
  color: white;
  font-size: 36px;
  font-weight: 600;
}

.section-heading h2 span {
  color: #ff2e00;
}

/* CARDS */
.mode-cards {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: nowrap;
  padding: 0px 0px;
}

.mode-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 20px;
  padding: 20px 20px 60px 20px;
  width: 378px;
  height: 365px;
  transition: 0.3s ease;
}

.mode-card:hover {
  transform: translateY(-10px);
  border-color: #ff3d00;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* TOP ROW */
.mode-top {
  display: flex;
  align-items: center;
  gap: 16px;

  margin-bottom: 20px;
}

/* IMAGE */
.mode-top img {
  width: 80px;
  height: 70px;
  object-fit: contain;
}

/* MODE TEXT */
.mode-heading small {
  color: white;
  font-size: 18px;
  font-weight: 500;
}

.mode-heading h3 {
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin-top: 4px;
  line-height: 1.4;
}

/* CONTENT */
.mode-card p {
  color: white;

  font-size: 20px;
  line-height: 1.7;
  font-weight: 400;
  opacity: 0.9;

  margin-bottom: 24px;
}

/* PRICE */
.payout-red {
  display: flex;
  justify-content: center;
  background: rgba(255, 46, 0, 0.13);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);

  color: #ff2e00;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 600;
}

.payout-blue {
  display: flex;
  justify-content: center;
  background: rgba(44, 175, 255, 0.33);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #2cafff;
  padding: 12px 12px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.payout-yellow {
  display: flex;
  justify-content: center;
  background: rgba(255, 188, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffbc00;
  padding: 12px 10px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* ===================================== */
/* PRICING SECTION */
/* ===================================== */

.pricing-section {
  padding: 30px 0 60px;
  background-color: transparent;
  /* Show wave background */
}

.pricing-heading {
  text-align: center;
}

.pricing-heading p {
  color: white;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}

.pricing-heading h2 {
  color: white;
  font-size: 36px;
  font-weight: 600;
}

.pricing-heading span {
  color: #ff2e00;
}

/* TABLE */

.pricing-table-wrapper {
  margin: 40px auto 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow-x: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  max-width: 1300px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.pricing-table th:nth-child(1),
.pricing-table td:nth-child(1) {
  width: 35%;
}

.pricing-table th:nth-child(2),
.pricing-table td:nth-child(2) {
  width: 40%;
}

.pricing-table th:nth-child(3),
.pricing-table td:nth-child(3) {
  width: 25%;
}

.pricing-table th {
  color: #ff3d00;
  text-align: left;
  padding: 24px 30px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-table td {
  padding: 22px 30px;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 18px;
  line-height: 1.4;
  vertical-align: middle;
}

.pricing-table tbody tr {
  transition: all 0.3s ease;
}

.pricing-table tbody tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.03);
}

.pricing-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.highlight {
  color: #ffffff !important;
  font-weight: 700;
}

.table-footer {
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  /* Pushes content to opposite sides */
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.table-footer p {
  margin: 0;
  font-size: 17px;
}

/* ===================================== */
/* BENEFITS SECTION */
/* ===================================== */

.benefits-section {
  padding-bottom: 400px;
  background-color: transparent;
  /* Show wave background */
}

.benefits-flex {
  display: flex;
  gap: 24px;
}

.benefit-card {
  flex: 1;
  border-radius: 20px;
  padding: 30px;
  color: white;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.benefit-card.red-card:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: #ff2e00;
}

.benefit-card.blue-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: #2cafff;
}

.red-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 635px;
  height: 317px;
}

.blue-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 635px;
  height: 317px;
}

.benefit-top {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.benefit-top img {
  margin-top: -10px;
  width: 90px;
  height: 80px;
  object-fit: contain;
}

.benefit-small {
  font-size: 24px;
  font-weight: 500;
  /* opacity: 0.9; */
  margin-bottom: 8px;
  color: white;
}

.benefit-top h3 {
  font-size: 26px;
  margin-top: 10px;
  line-height: 1.4;

  font-weight: 600;
}

.benefit-text {
  margin-top: -10px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  margin-left: 20px;
  opacity: 0.95;
}

/* Brand Specific Wave Background */
.brand-wave-wrapper {
  position: relative;
  background: #000712;
}

.brand-wave-wrapper::before {
  content: "";
  position: absolute;
  /* top: -20px; */
  top: 20px;
  left: 0;
  width: 1536px;
  height: 1024px;
  background: url("../img/wave-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  /* opacity: 0.6; */
  z-index: 1;
  pointer-events: none;
}

.pricing-section,
.benefits-section {
  position: relative;
  z-index: 2;
}

.brand-wave-wrapper .benefits-section {
  padding-bottom: 20px;
}

.brand-cta {
  margin-top: -20px;
}

/* ===================================================== */
/* RESPONSIVE CSS - KEEPING ORIGINAL DESIGN */
/* ===================================================== */

/* Large Tablets */
@media (max-width: 1200px) {
  .brand-hero {
    gap: 60px;
  }

  .brand-hero .hero-right img {
    width: 100%;
    max-width: 600px;
    height: auto;
  }

  .mode-cards {
    gap: 20px;
  }

  .mode-card {
    width: 100%;
    height: auto;
  }

  .benefits-flex {
    gap: 20px;
  }

  .red-card,
  .blue-card {
    width: 100%;
    height: auto;
  }

  .pricing-table-wrapper {
    margin: 40px auto 0 auto;
    width: 100%;
  }

  .brand-wave-wrapper::before {
    width: 100%;
    background-size: cover;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .brand-hero {
    flex-direction: column;
    text-align: center;
    height: auto;
    gap: 40px;
    padding-top: 40px;
  }

  .brand-hero .hero-left h1 {
    font-size: 40px;
  }

  .brand-hero .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .brand-hero .hero-right img {
    max-width: 100%;
    height: auto;
  }

  .problem-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .problem-left img {
    width: 100%;
    max-width: 350px;
    height: auto;
  }

  .problem-right h2 {
    font-size: 30px;
  }

  .problem-right p {
    font-size: 18px;
  }

  .mode-cards {
    flex-wrap: wrap;
    justify-content: center;
  }

  .mode-card {
    flex: 0 0 calc(50% - 15px);
  }

  .benefits-flex {
    flex-direction: column;
  }

  .benefit-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .benefit-text {
    margin-left: 0;
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .brand-hero .hero-tag {
    font-size: 20px;
  }

  .brand-hero .hero-left h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .brand-hero .hero-left p {
    font-size: 16px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    max-width: 320px;
    height: 54px;
    font-size: 18px;
  }

  .problem-section {
    margin-top: 20px;
    padding: 0 15px;
  }

  .problem-card {
    border-radius: 16px;
  }

  .problem-right h2 {
    font-size: 26px;
    line-height: 1.4;
  }

  .problem-right p {
    font-size: 16px;
  }

  .problem-small {
    font-size: 20px;
  }

  .campaign-modes {
    padding: 60px 20px;
  }

  .section-heading h2,
  .pricing-heading h2 {
    font-size: 30px;
    line-height: 1.3;
  }

  .section-heading p,
  .pricing-heading p {
    font-size: 18px;
  }

  .mode-cards {
    flex-direction: column;
  }

  .mode-card {
    width: 100%;
    flex: 1 1 100%;
  }

  .mode-card p {
    font-size: 18px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 16px;
    font-size: 15px;
  }

  .table-footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 20px;
  }

  .benefit-card {
    padding: 24px 20px;
  }

  .benefit-top img {
    width: 120px;
    height: auto;
  }

  .benefit-small {
    font-size: 20px;
  }

  .benefit-top h3 {
    font-size: 24px;
  }

  .benefit-text {
    font-size: 17px;
    line-height: 1.6;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .brand-hero {
    padding-top: 20px;
    gap: 30px;
  }

  .brand-hero .hero-left h1 {
    font-size: 28px;
  }

  .brand-hero .hero-buttons {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    font-size: 16px;
    height: 50px;
    border-radius: 12px;
  }

  .problem-right h2 {
    font-size: 22px;
  }

  .section-heading h2,
  .pricing-heading h2 {
    font-size: 26px;
  }

  .mode-heading h3 {
    font-size: 18px;
  }

  .mode-card p {
    font-size: 16px;
  }

  .payout-red,
  .payout-blue,
  .payout-yellow {
    font-size: 16px;
  }

  .benefit-top h3 {
    font-size: 22px;
  }

  .benefit-text {
    font-size: 16px;
  }

  .pricing-table {
    min-width: unset;
    width: 100%;
  }

  .pricing-table,
  .pricing-table thead,
  .pricing-table tbody,
  .pricing-table th,
  .pricing-table td,
  .pricing-table tr {
    display: block;
  }

  .pricing-table thead {
    display: none;
  }

  .pricing-table tbody tr {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
  }

  .pricing-table td {
    border-top: none;
    padding: 8px 0;
    font-size: 15px;
    position: relative;
    padding-left: 0;
    text-align: left;
  }

  .pricing-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #ff3d00;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
  }

  .pricing-table th:nth-child(1),
  .pricing-table td:nth-child(1),
  .pricing-table th:nth-child(2),
  .pricing-table td:nth-child(2),
  .pricing-table th:nth-child(3),
  .pricing-table td:nth-child(3) {
    width: 100%;
  }

  .pricing-table-wrapper {
    margin: 40px auto 0 auto;
    width: 100%;
    overflow-x: hidden;
  }
}

/* ---------------------------------------------------------------------------------- */
/* creator page css */
.creator-hero {
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 150px;
  height: 100px;
}

.creator-hero .hero-tag {
  font-size: 24px;
  font-style: 600;
}

.creator-hero .hero-left h1 {
  font-size: 48px;
  line-height: 1.4;
  font-weight: 600;
}

.creator-hero .hero-left p {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 500;
}

.creator-hero .hero-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.creator-hero .hero-right img {
  width: 668px;
  height: 708px;
  margin-right: -50px;
  /* Negative margin pulls it further right, even past the container padding */
  position: relative;
  z-index: 2;
}

.creator-hero .hero-buttons {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.primary-btn {
  padding: 12px 20px;
  border: none;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;

  display: flex;
  align-items: center;
  background: #ff2e00;
  color: white;
  width: 263px;
  height: 59px;
  font-size: 20px;
  font-weight: 600;
  padding: 12px 30px;
}

.creator-hero .primary-btn:hover {
  background: #ff451a;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 46, 0, 0.4);
}

/* ===================================== */
/* probelm section */
/* ===================================== */
.creator-problem-section {
  margin-top: -40px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: #000712; */
}

.creator-problem-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 60px 40px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.creator-problem-left {
  width: 100%;
  max-width: 1000px;
}

.creator-problem-left h2 {
  color: white;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
}

.creator-problem-left p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.creator-problem-left span {
  color: #ff3d00;
}

.creator-problem-small {
  font-size: 16px;
  font-weight: 600;
  color: #ff3d00;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* ===================================== */
/* campaign section */
/* ===================================== */

.earning-guide {
  padding: 80px 0;
  background: #000712;
}

/* HEADING */
.section-heading {
  text-align: center;
}

.section-heading p {
  font-size: 20px;
  font-weight: 500;
  color: white;
  margin-bottom: 10px;
}

.section-heading h2 {
  color: white;
  font-size: 36px;
  font-weight: 600;
}

.section-heading h2 span {
  color: #ff2e00;
}

/* CARDS ROW */
.earn-cards {
  display: flex;
  gap: 20px;
  margin-top: 50px;
}

/* SINGLE CARD */
.earn-card {
  flex: 1;

  background: rgba(255, 255, 255, 0.12);

  border: 1px solid rgba(255, 255, 255, 1);

  border-radius: 22px;

  padding: 22px;

  min-height: auto;
  width: 306px;

  transition: 0.3s ease;

  backdrop-filter: blur(10px);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.earn-card:hover {
  transform: translateY(-12px);
  border-color: #ff2e00;
  box-shadow: 0 25px 50px rgba(255, 46, 0, 0.25);
  background: rgba(255, 255, 255, 0.15);
}

/* TOP */
.earn-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 18px;
}

/* IMAGE */
.earn-card-top img {
  width: 60px;
  height: 55px;
  object-fit: contain;
}

/* PRICE */
.earn-price {
  position: relative;
}

.earn-price span {
  color: white;
  font-size: 34px;
  font-weight: 600;
}

/* TITLE */
.earn-card h3 {
  color: white;
  font-size: 24px;
  font-weight: 600;

  margin-bottom: 14px;
}

/* TEXT */
.earn-card p {
  color: rgba(255, 255, 255, 0.85);

  font-size: 18px;

  line-height: 1.5;

  font-weight: 500;
}

/* ===================================== */
/* BENEFITS SECTION */
/* ===================================== */

.creator-benefits-section {
  /* padding-bottom: 150px; */
  background-color: transparent;
  /* Show wave background */
}

.creator-benefits-flex {
  display: flex;
  gap: 24px;
}

.creator-benefit-card {
  flex: 1;
  border-radius: 20px;
  padding: 30px;
  color: white;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.creator-benefit-card.creator-red-card:hover {
  transform: translateY(-12px) rotate(-1deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: #ff2e00;
}

.creator-benefit-card.creator-blue-card:hover {
  transform: translateY(-12px) rotate(1deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: #2cafff;
}

.creator-red-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 635px;
  height: 340px;
}

.creator-blue-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 635px;
  height: 340px;
}

.creator-benefit-top {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.creator-benefit-top img {
  margin-top: -10px;
  width: 90px;
  height: 80px;
  object-fit: contain;
}

.creator-benefit-small {
  font-size: 22px;
  font-weight: 500;
  /* opacity: 0.9; */
  margin-bottom: 8px;
  color: white;
}

.creator-benefit-top h3 {
  font-size: 26px;
  margin-top: 10px;
  line-height: 1.5;

  font-weight: 600;
}

.creator-benefit-text {
  margin-top: -10px;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.5;
  margin-left: 20px;
  opacity: 0.95;
}

/* Influencer Specific Wave Background */
.influencer-wave-bg {
  position: relative;
  background: #000712;
  overflow: hidden;
  padding-bottom: 100px;
}

.influencer-wave-bg::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 0;
  width: 100%;
  height: 120%;
  background: url("../img/wave-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  /* opacity: 0.5; */
  z-index: 1;
  pointer-events: none;
  animation: waveFloat 20s linear infinite alternate;
}

.earning-guide,
.creator-benefits-section,
.platforms-section {
  position: relative;
  z-index: 2;
  background: transparent !important;
}

/* PLATFORMS SECTION */
.platforms-section {
  padding: 60px 0;
  text-align: center;
  background-color: transparent;
  /* Assuming it sits on your dark background */
}

.platforms-content .platforms-small {
  color: #ffffff;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
  opacity: 0.9;
}

.platforms-content h2 {
  color: #ffffff;
  font-size: 36px;
  line-height: 1.3;
  font-weight: 600;
  max-width: 900px;
  margin: 0 auto;
}

.platforms-content h2 span {
  /* Adjusting the color to match your specific blue/grey theme 
       or keep it white based on the image */
  color: #ffffff;
  opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .platforms-content h2 {
    font-size: 1.8rem;
    padding: 0 20px;
  }

  .platforms-content .platforms-small {
    font-size: 1rem;
  }
}

.creator-cta {
  margin-top: -180px;
}

/* =========================================================
   TABLET RESPONSIVE
========================================================= */
@media (max-width: 992px) {
  .creator-hero {
    flex-direction: column;
    height: auto;
    gap: 50px;
    text-align: center;
    padding-top: 40px;
  }

  .creator-hero .hero-left h1 {
    font-size: 40px;
    line-height: 1.3;
  }

  .creator-hero .hero-left p {
    font-size: 22px;
  }

  .creator-hero .hero-buttons {
    justify-content: center;
  }

  .creator-hero .hero-right {
    justify-content: center;
  }

  .creator-hero .hero-right img {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-right: 0;
  }

  /* PROBLEM SECTION */
  .creator-problem-card {
    flex-direction: column;
    padding: 40px 30px;
    text-align: center;
  }

  .creator-problem-left h2 {
    font-size: 34px;
  }

  .creator-problem-left p {
    font-size: 20px;
  }

  .creator-problem-small {
    margin-top: 0;
  }

  .creator-problem-right img {
    width: 100%;
    max-width: 350px;
    height: auto;
  }

  /* EARNING CARDS */
  .earn-cards {
    flex-wrap: wrap;
  }

  .earn-card {
    width: calc(50% - 10px);
    min-width: unset;
  }

  /* BENEFITS */
  .creator-benefits-flex {
    flex-direction: column;
  }

  .creator-red-card,
  .creator-blue-card {
    width: 100%;
    height: auto;
  }

  .creator-benefit-top {
    align-items: center;
  }

  .creator-benefit-top img {
    width: 120px;
    height: auto;
  }

  .creator-benefit-text {
    margin-left: 0;
  }

  /* CTA */
  .creator-cta {
    margin-top: -80px;
  }
}

/* =========================================================
   MOBILE RESPONSIVE
========================================================= */
@media (max-width: 768px) {
  .creator-hero {
    gap: 30px;
    padding-top: 20px;
  }

  .creator-hero .hero-tag {
    font-size: 18px;
  }

  .creator-hero .hero-left h1 {
    font-size: 32px;
  }

  .creator-hero .hero-left p {
    font-size: 17px;
    line-height: 1.6;
  }

  .creator-hero .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .primary-btn {
    width: 100%;
    max-width: 280px;
    height: 54px;
    justify-content: center;
    font-size: 17px;
  }

  .creator-hero .hero-right img {
    max-width: 380px;
  }

  /* PROBLEM SECTION */
  .creator-problem-section {
    margin-top: 20px;
    padding: 0 15px;
  }

  .creator-problem-card {
    padding: 30px 20px;
    border-radius: 18px;
  }

  .creator-problem-left h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .creator-problem-left p {
    font-size: 16px;
  }

  .creator-problem-small {
    font-size: 18px;
  }

  .creator-problem-right img {
    max-width: 280px;
  }

  /* EARNING GUIDE */
  .earning-guide {
    padding: 60px 0;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .section-heading p {
    font-size: 16px;
  }

  .earn-cards {
    flex-direction: column;
  }

  .earn-card {
    width: 100%;
    min-height: auto;
  }

  .earn-card-top img {
    width: 90px;
    height: auto;
  }

  .earn-price {
    margin-top: 20px;
    margin-left: 0;
  }

  .earn-price span {
    font-size: 26px;
  }

  .earn-card h3 {
    font-size: 22px;
  }

  .earn-card p {
    font-size: 16px;
  }

  /* BENEFITS */
  .creator-benefit-card {
    padding: 24px 20px;
  }

  .creator-benefit-top {
    flex-direction: column;
    text-align: center;
  }

  .creator-benefit-top img {
    width: 100px;
  }

  .creator-benefit-small {
    font-size: 18px;
  }

  .creator-benefit-top h3 {
    font-size: 24px;
    line-height: 1.4;
  }

  .creator-benefit-text {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
  }

  /* PLATFORMS */
  .platforms-section {
    padding: 40px 0;
  }

  .platforms-content h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .platforms-content .platforms-small {
    font-size: 16px;
  }

  /* CTA */
  .creator-cta {
    margin-top: -400px;
  }

  .faq-section {
    padding-bottom: 20px;
    margin-bottom: 0;
  }

  .influencer-wave-bg {
    padding-bottom: 0px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */
@media (max-width: 480px) {
  .creator-hero .hero-left h1 {
    font-size: 26px;
  }

  .creator-hero .hero-left p {
    font-size: 15px;
  }

  .creator-hero .hero-right img {
    max-width: 300px;
  }

  .creator-problem-left h2 {
    font-size: 24px;
  }

  .section-heading h2,
  .platforms-content h2 {
    font-size: 24px;
  }

  .earn-card {
    padding: 18px;
  }

  .earn-card h3 {
    font-size: 20px;
  }

  .creator-benefit-top h3 {
    font-size: 21px;
  }

  .creator-benefit-text {
    font-size: 15px;
  }
}

/* ---------------------------------------------------------------------------------- */
/* contact us page css */
.contact-hero {
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 150px;
}

.contact-hero .hero-tag {
  font-size: 24px;
  font-style: 600;
}

.contact-hero .hero-left h1 {
  font-size: 48px;
  line-height: 1.4;
  font-weight: 600;
}

.contact-hero .hero-left p {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 500;
}

.contact-hero .hero-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.contact-hero .hero-right img {
  width: 706px;
  height: 616px;
  margin-right: -130px;
  /* Negative margin pulls it further right, even past the container padding */
  position: relative;
}

.contact-us-hero .hero-buttons {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* CONTACT CARD SECTION */
.contact-card-section {
  margin-top: -0px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
  background-color: #000712;
}

.contact-card-section {
  margin-top: -0px;

  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
  z-index: 10;

  background-color: transparent;
}

/* CONTACT CARD SECTION */
.contact-card-section {
  margin-top: -50px;
  /* pulls card upward */
  position: relative;
  z-index: 5;
}

/* GLASS CARD */
.contact-glass-card {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 1) !important;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10px;
  padding: 80px;
  color: white;
  position: relative;
  z-index: 10;
}

/* Titles */
.contact-glass-card h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;
}

.contact-glass-card h2 span {
  color: #ff2e00;
}

.contact-glass-card p {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 30px;
}

/* Form Inputs */
.input-group {
  position: relative;
  margin-bottom: 15px;
  width: 563px;
  /* height: 60px; */
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 12px;
  padding: 15px 15px 15px 55px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  outline: none;
  transition: 0.3s;
}

.input-group textarea {
  padding-left: 15px;
  /* Textarea usually doesn't have the left icon */
}

.input-group input:focus {
  border-color: #ff2e00;
}

.input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 27px;
  height: 27px;
  /* opacity: 0.7; */
}

/* Button */
.send-btn {
  background-color: #ff2e00;
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 12px;
  font-weight: 400;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s;
  width: 563px;
  height: 60px;
  text-align: center;
  justify-content: center;
}

.send-btn img {
  width: 16px;
  height: 16px;
}

.send-btn:hover {
  transform: translateY(-5px);
  background: #ff451a;
  box-shadow: 0 10px 25px rgba(255, 46, 0, 0.4);
}

.contact-info-side h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;
}

.contact-info-side p {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 40px;
}

/* Email Box */
.email-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 563px;
  height: 110px;
}

.email-icon img {
  width: 72px;
  height: 92px;
}

.email-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.email-text .label {
  font-weight: 500;
  color: #ffffff;
  font-size: 22px;
  margin: 0;
}

.email-text .address {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-glass-card {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .contact-wave-bg::before {
    height: 100%;
    /* Keeps the background strictly within the section borders */
    top: 0;
    /* Prevents it from spilling over the top and bottom */
  }
}

.contact-cta {
  position: relative;
  margin-top: -30px;
  background: transparent !important;
}

/* Contact Specific Wave Background */
.contact-wave-bg {
  position: relative;
  background: transparent;
  overflow: visible;
  padding-bottom: 50px;
}

.contact-wave-bg::before {
  content: "";
  position: absolute;
  top: -300px;
  left: 0;
  width: 100%;
  height: 150%;
  background: url("../img/wave-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
  animation: wavePulse 15s ease-in-out infinite alternate;
}

@keyframes wavePulse {
  0% {
    transform: scale(1) translateY(0);
    opacity: 0.3;
  }

  100% {
    transform: scale(1.1) translateY(20px);
    opacity: 0.5;
  }
}

.contact-card-section,
.contact-cta {
  position: relative;
  z-index: 2;
}

/* =========================================================
   CONTACT PAGE RESPONSIVE CSS
   ADD THIS AT THE END OF YOUR CURRENT CSS
   ========================================================= */

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {
  .contact-hero {
    gap: 40px;
    align-items: center;
    padding-bottom: 40px;
  }

  .contact-hero .hero-left h1 {
    font-size: 38px;
  }

  .contact-hero .hero-left p {
    font-size: 22px;
  }

  .contact-hero .hero-right img {
    max-width: 100%;
    margin-right: 0;
  }

  .contact-glass-card {
    grid-template-columns: 1fr;
    /* Switch to clean vertical stacks */
    padding: 50px 40px;
    gap: 50px;
  }

  .contact-card-section {
    margin-top: 0;
    /* Reset negative margins cleanly to prevent cutting the top box off */
  }

  .input-group,
  .send-btn,
  .email-box {
    width: 100%;
    max-width: 100%;
  }

  .contact-info-side {
    width: 100%;
  }

  .contact-cta {
    margin-top: 0;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .contact-hero {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding-top: 20px;
  }

  .contact-hero .hero-left {
    width: 100%;
  }

  .contact-hero .hero-tag {
    font-size: 20px;
  }

  .contact-hero .hero-left h1 {
    font-size: 34px;
    line-height: 1.3;
  }

  .contact-hero .hero-left p {
    font-size: 18px;
    line-height: 1.5;
  }

  .contact-hero .hero-right {
    justify-content: center;
    width: 100%;
  }

  .contact-hero .hero-right img {
    margin-right: 0;
    max-width: 100%;
  }

  .contact-card-section {
    margin-top: 0;
    padding: 0 15px;
  }

  .contact-glass-card {
    padding: 40px 20px;
    border-radius: 20px;
  }

  .contact-glass-card h2,
  .contact-info-side h2 {
    font-size: 28px;
  }

  .contact-glass-card p,
  .contact-info-side p {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .input-group {
    width: 100%;
  }

  .input-group input,
  .input-group textarea,
  .input-group select {
    font-size: 16px;
    padding: 14px 14px 14px 50px;
  }

  .input-group textarea {
    padding-left: 14px;
  }

  .input-icon {
    width: 20px;
    height: 20px;
  }

  .send-btn {
    width: 100%;
    height: 56px;
    font-size: 18px;
  }

  .email-box {
    width: 100%;
    height: auto;
    padding: 20px;
    gap: 16px;
  }

  .email-icon img {
    width: 55px;
    height: auto;
  }

  .email-text .label {
    font-size: 20px;
  }

  .email-text .address {
    font-size: 16px;
    word-break: break-word;
  }

  .contact-wave-bg {
    padding-bottom: 20px;
  }

  .contact-cta {
    margin-top: 0;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .contact-hero {
    gap: 25px;
  }

  .contact-hero .hero-left h1 {
    font-size: 32px;
  }

  .contact-hero .hero-left p {
    font-size: 16px;
  }

  .contact-hero .hero-right img {
    max-width: 320px;
  }

  .contact-glass-card {
    padding: 30px 15px;
  }

  .contact-glass-card h2,
  .contact-info-side h2 {
    font-size: 24px;
  }

  .contact-glass-card p,
  .contact-info-side p {
    font-size: 15px;
  }

  .input-group input,
  .input-group textarea,
  .input-group select {
    font-size: 15px;
    border-radius: 10px;
  }

  .send-btn {
    height: 52px;
    font-size: 16px;
    border-radius: 10px;
  }

  .email-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .email-text .label {
    font-size: 18px;
  }

  .email-text .address {
    font-size: 15px;
  }

  .contact-cta {
    margin-top: -10px;
  }
}

@media (max-width: 768px) {
  .contact-wave-bg {
    overflow: hidden;
    padding-bottom: 0;
  }

  .contact-wave-bg::before {
    height: 100%;
    top: -120px;
  }

  .footer {
    margin-top: 0;
    padding-bottom: 0;
  }

  body {
    margin-bottom: 0;
  }
}

/* ===================================== */
/* PRIVACY POLICY PAGE */
/* ===================================== */

.privacy-hero {
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
}

.privacy-page .hero-wrapper {
  min-height: 450px;
  background-size: cover;
  background-position: center top;
}

.privacy-hero h1 {
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.privacy-hero h1 span {
  color: #ff2e00;
}

.privacy-hero .last-updated {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.hero-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 46, 0, 0.15) 0%,
    transparent 70%
  );
  z-index: -1;
  pointer-events: none;
}

.privacy-content-section {
  padding: 40px 0 100px;
  position: relative;
  z-index: 2;
}

.privacy-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  padding: 80px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.privacy-intro {
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 40px;
}

.privacy-intro p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.compliance-note {
  color: #ff2e00;
  font-weight: 600;
}

.policy-section {
  margin-bottom: 60px;
}

.policy-section h3 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 25px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 15px;
}

.policy-section h3::before {
  content: "";
  display: block;
  width: 4px;
  height: 28px;
  background: #ff2e00;
  border-radius: 2px;
}

.policy-section h4 {
  font-size: 22px;
  color: #fff;
  margin: 35px 0 15px;
  font-weight: 600;
}

.policy-section p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.9;
}

.policy-section ul {
  list-style: none;
  padding-left: 10px;
  margin-bottom: 25px;
}

.policy-section ul li {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  opacity: 0.85;
}

.policy-section ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #ff2e00;
  font-weight: bold;
}

.policy-section ul li strong {
  color: #fff;
}

.policy-section ul li ul {
  margin-top: 10px;
  margin-bottom: 0;
}

.highlight-box {
  background: rgba(255, 46, 0, 0.1);
  border: 1px solid rgba(255, 46, 0, 0.3);
  padding: 20px 30px;
  border-radius: 15px;
  font-weight: 600;
  color: #fff !important;
  display: inline-block;
}

.contact-info {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 20px;
  margin-top: 30px;
}

.contact-info p {
  margin-bottom: 10px !important;
}

.contact-info a {
  color: #ff2e00;
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Privacy Wave Background */
.privacy-wave-bg {
  position: relative;
  background: transparent;
  overflow: visible;
  /* Changed back to visible to ensure content isn't clipped */
}

.privacy-wave-bg::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/wave-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
  animation: wavePulse 20s ease-in-out infinite alternate;
}

@media (max-width: 992px) {
  .privacy-hero h1 {
    font-size: 40px;
    padding: 0 20px;
  }

  .privacy-hero .last-updated {
    font-size: 16px;
  }

  .privacy-card {
    padding: 30px 20px;
    border-radius: 20px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  }

  .policy-section h3 {
    font-size: 20px;
    gap: 10px;
  }

  .policy-section h3::before {
    height: 20px;
  }

  .policy-section p,
  .policy-section ul li {
    font-size: 16px;
  }

  .privacy-intro p {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .privacy-hero h1 {
    font-size: 32px;
  }

  .privacy-card {
    padding: 25px 15px;
  }
}

.terms-page .hero-wrapper {
  min-height: 450px;
  background-size: cover;
  background-position: center top;
}

/* ---------------------------------------------------------------------------------- */
/* delete account  */

/* Privacy Wave Background */
.delete-account-wave-bg {
  position: relative;
  background: transparent;
  overflow: visible;
  /* Changed back to visible to ensure content isn't clipped */
}

.delete-account-wave-bg::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/wave-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
  animation: wavePulse 20s ease-in-out infinite alternate;
}

.delete-account-hero {
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
}

.delete-account-page .hero-wrapper {
  min-height: 450px;
  background-size: cover;
  background-position: center top;
}

.delete-account-hero h1 {
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.delete-account-hero h1 span {
  color: #ff2e00;
}

.delete-account-hero .last-updated {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.hero-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 46, 0, 0.15) 0%,
    transparent 70%
  );
  z-index: -1;
  pointer-events: none;
}

.delete-account-content-section {
  padding: 40px 0 100px;
  position: relative;
  z-index: 2;
}

/* CLEANED CARD CONTAINER */
.delete-account-card {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  padding: 60px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
}

/* COLUMN MANAGEMENT */
.delete-left {
  flex: 1;
  min-width: 0;
}

.delete-right {
  flex: 1;
  min-width: 0;
  width: 100%;
}

.delete-left h2 {
  font-size: 35px;
  color: white;
  margin-bottom: 20px;
  font-weight: 600;
}

.delete-left h3 {
  font-size: 26px;
  color: white;
  margin-bottom: 16px;
}

.delete-left p,
.delete-left li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  line-height: 1.7;
}

.delete-left ul {
  margin: 20px 0;
  padding-left: 20px;
  list-style: none;
}

.delete-left ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.delete-left ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #ff2e00;
  font-weight: bold;
}

.confirm-text {
  margin-top: 30px;
}

/* FORM LAYOUTS FIX */
.delete-form {
  width: 100%;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  width: 100%;
  /* Changed from 80% to fit neatly */
}

.input-group {
  flex: 1;
  min-width: 0;
}

.input-group input,
.input-group select {
  width: 100%;
  box-sizing: border-box;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
  /* padding: 12px 0; */
  color: white;
  font-size: 18px;
  outline: none;
  transition: 0.3s ease;
  /* padding-left: 10px; */
}

/* Dropdown arrow fix for dark theme styling */
.input-group select option {
  background: #1a1a1a;
  color: #fff;
  padding-left: 10px;
}

.input-group input::placeholder {
  color: rgba(255, 255, 255, 0.6);
  /* padding-left: 10px; */
}

.input-group input:focus,
.input-group select:focus {
  border-bottom-color: #ff2e00;
}

.full-width {
  width: 100%;
  margin-bottom: 35px;
}

/* BUTTON */
.delete-btn {
  width: 100%;
  height: 65px;
  border: none;
  border-radius: 15px;
  background: #ff2e00;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.delete-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 184, 0, 0.2);
}

/* Privacy Wave Background */
.delete-account-wave-bg {
  position: relative;
  background: transparent;
}

/* =========================================
   RESPONSIVE DESIGN BREAKPOINTS
========================================= */

@media (max-width: 1100px) {
  .delete-account-card {
    flex-direction: column;
    padding: 45px;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .delete-account-hero h1 {
    font-size: 42px;
  }

  .delete-account-card {
    padding: 30px 20px;
    border-radius: 24px;
  }

  .form-row {
    flex-direction: column;
    gap: 20px;
  }

  .delete-left h2 {
    font-size: 28px;
  }

  .delete-left h3 {
    font-size: 22px;
  }

  .delete-left p,
  .delete-left li {
    font-size: 16px;
  }

  .delete-btn {
    height: 60px;
    font-size: 20px;
  }
} /* --- GLOBAL CTA MOBILE FIX --- */
@media (max-width: 1024px) {
  .cta-section,
  .cta-section.brand-cta,
  .cta-section.creator-cta,
  .cta-section.contact-cta {
    margin-top: 40px !important;
    padding: 40px 0 !important;
    display: block !important;
  }
  .cta-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    height: auto !important;
    min-height: auto !important;
    padding: 40px 20px !important;
    text-align: center !important;
    overflow: visible !important;
    border-radius: 20px !important;
  }
  .cta-rocket {
    position: static !important;
    width: 200px !important;
    margin: 0 auto 20px auto !important;
    transform: none !important;
  }
  .cta-rocket img {
    width: 100% !important;
    height: auto !important;
    position: static !important;
  }
  .cta-content {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 0 !important;
    text-align: center !important;
  }
  .cta-content h2 {
    font-size: 28px !important;
    line-height: 1.3 !important;
    margin-bottom: 15px !important;
  }
  .cta-content p {
    font-size: 16px !important;
    margin-bottom: 25px !important;
    max-width: 100% !important;
  }
  .cta-buttons {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
  }
  .cta-buttons img {
    width: 160px !important;
    height: auto !important;
  }
}
/* --- GLOBAL FAQ TEXT ALIGNMENT FIX --- */
.faq-list,
.faq-item,
.faq-question span,
.faq-answer p {
  text-align: justify !important;
}
/* --- BRAND HERO GAP FIX --- */
.brand-wrapper {
  min-height: auto !important;
  padding-bottom: 140px !important;
}
.brand-hero {
  height: auto !important;
}
