/* --------------------------------------------------
   GLOBAL
-------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  width: 88%;
  max-width: 1250px;
  margin: auto;
}

/* --------------------------------------------------
   NAVBAR
-------------------------------------------------- */
header {
  background: #0c0c0c;
  border-bottom: 3px solid #f37021;
  position: sticky;
  top: 0;
  z-index: 50;
}

nav {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  gap: 12px;
  align-items: center;
}

.logo-img {
  height: 48px;
}

.logo-text {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: #ececec;
  font-size: 1.02rem;
  transition: 0.25s;
}

.nav-links a:hover {
  color: #f37021;
}

.nav-cta {
  background: #f37021;
  color: #0b0b0b !important;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
}

.nav-cta:hover {
  background: #d45c09;
}

/* --------------------------------------------------
   HERO
-------------------------------------------------- */
.hero {
  padding: 130px 0 150px;
  background: linear-gradient(180deg, #0d0d0d, #141414);
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 3rem;
  max-width: 800px;
  margin: auto;
  font-weight: 800;
  line-height: 1.15;
}

.hero h1 span {
  color: #f37021;
}

.hero-subtitle {
  font-size: 1.15rem;
  max-width: 650px;
  margin: 18px auto 30px;
  color: #cdcdcd;
}

/* CTA Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 25px;
}

.cta-button {
  padding: 14px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: 0.25s;
}

.cta-button.primary {
  background: #f37021;
  color: #0d0d0d;
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  background: #d45c09;
}

.cta-button.secondary {
  border: 2px solid #f37021;
  color: #f37021;
}

.cta-button.secondary:hover {
  background: #f37021;
  color: #111;
  transform: translateY(-3px);
}

/* --------------------------------------------------
   FEATURE SECTION
-------------------------------------------------- */
.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.section-subtitle {
  text-align: center;
  max-width: 650px;
  margin: auto;
  color: #555;
  font-size: 1.05rem;
}

.features-section,
.influencers-section {
  padding: 90px 0;
}

.features-grid,
.benefits-grid {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Card */
.feature-card,
.benefit-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.3s;
}

.feature-card:hover,
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: #f37021;
}

.feature-icon,
.benefit-icon {
  font-size: 2.8rem;
  color: #f37021;
  margin-bottom: 14px;
}

.feature-card h3,
.benefit-card h3 {
  font-size: 1.3rem;
  color: #111;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p,
.benefit-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.45;
}

/* --------------------------------------------------
   PROCESS SECTION
-------------------------------------------------- */
.process-section {
  padding: 95px 0;
  background: #fafafa;
}

.process-steps {
  margin-top: 45px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.process-step {
  width: 260px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #eee;
  text-align: center;
  transition: 0.25s;
}

.process-step:hover {
  transform: translateY(-5px);
  border-color: #f37021;
}

.step-number {
  width: 48px;
  height: 48px;
  background: #f37021;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: auto;
  margin-bottom: 16px;
}

.process-step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.process-step p {
  color: #555;
  font-size: 0.98rem;
}

/* --------------------------------------------------
   FINAL CTA
-------------------------------------------------- */
.cta-final {
  text-align: center;
  margin-top: 50px;
}

.cta-button.large {
  padding: 18px 32px;
  font-size: 1.1rem;
  background: #f37021;
  border-radius: 8px;
  color: #111;
  font-weight: 700;
  transition: 0.25s;
}

.cta-button.large:hover {
  background: #d45c09;
  transform: translateY(-3px);
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
footer {
  background: #0c0c0c;
  color: #ddd;
  padding: 70px 0 40px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo img {
  height: 50px;
}

.footer-links a {
  display: block;
  text-decoration: none;
  color: #b9b9b9;
  margin: 8px 0;
  font-size: 0.95rem;
  transition: 0.2s;
}

.footer-links a:hover {
  color: #f37021;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 0.9rem;
  color: #999;
}

/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */
@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 700px) {
  nav {
    flex-direction: column;
    gap: 15px;
  }

  .hero {
    padding: 100px 0 120px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

@media (max-width: 450px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .cta-button {
    padding: 12px 20px;
  }
}


/* --------------------------------------------------
   IMPROVED SECTION TITLES
-------------------------------------------------- */
#for-brands h2,
#for-influencers h2 {
    text-align: center;
    font-size: 2.6rem;
    color: #0d0d0d;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
}

#for-brands h2::after,
#for-influencers h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #f37021;
    display: block;
    margin: 12px auto 0;
    border-radius: 8px;
}

/* Subtitle style */
#for-brands .section-subtitle,
#for-influencers .section-subtitle {
    text-align: center;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.55;
}

/* --------------------------------------------------
   BETTER GRID LAYOUT
-------------------------------------------------- */
.features-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 35px;
    padding-top: 10px;
}

/* --------------------------------------------------
   PREMIUM CARD DESIGN (Brands + Influencers)
-------------------------------------------------- */
.feature-card,
.benefit-card {
    background: #fff;
    padding: 35px 28px;
    border-radius: 16px;
    border: 1px solid #eee;
    box-shadow: 0px 10px 28px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Orange glow hover */
.feature-card:hover,
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 16px 35px rgba(243, 112, 33, 0.25);
    border-color: #f37021;
}

/* Top Accent Bar */
.feature-card::before,
.benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 4px;
    background: #f37021;
    transition: 0.35s ease;
}

.feature-card:hover::before,
.benefit-card:hover::before {
    width: 100%;
}

/* Icons */
.feature-icon,
.benefit-icon {
    font-size: 3rem;
    margin-bottom: 18px;
    color: #f37021;
    transition: 0.3s;
}

.feature-card:hover .feature-icon,
.benefit-card:hover .benefit-icon {
    transform: scale(1.18);
}

/* Titles */
.feature-card h3,
.benefit-card h3 {
    font-size: 1.35rem;
    color: #111;
    font-weight: 800;
    margin-bottom: 12px;
}

/* Text */
.feature-card p,
.benefit-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.55;
}

/* --------------------------------------------------
   SECTION SPACING
-------------------------------------------------- */
.brands-section,
.influencers-section {
    padding: 110px 0;
}

/* --------------------------------------------------
   RESPONSIVE IMPROVEMENTS
-------------------------------------------------- */
@media (max-width: 768px) {
    #for-brands h2,
    #for-influencers h2 {
        font-size: 2.1rem;
    }

    .feature-card,
    .benefit-card {
        padding: 28px 22px;
    }

    .feature-card h3,
    .benefit-card h3 {
        font-size: 1.22rem;
    }
}
