:root {
    --primary: #ff6b2c;
    --dark: #0b1220;
    --light: #fff6f2;
    --muted: #6b7280;
    --border: #e5e7eb;
}

/* Utilities */
.text-center{
    text-align: center;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
}

.container {
    width: min(1120px, 92%);
    margin: auto;
}

section {
    padding: 90px 0;
}
section h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    text-align: center;
}
.section-subtitle {
    max-width: 600px;
    margin: 0 auto 50px;
    color: #666;
    font-size: 1.1rem;
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.front-logo{
    text-decoration: none;
    color: #000;
}

.logo {
    font-weight: 800;
    font-size: 20px;
    text-decoration: none;
    color: var(--dark);
}

.logo img{
    width: 120px;
}

.nav {
    display: flex;
    gap: 24px;
}

.nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
}

.header-actions {
    display: flex;
    gap: 12px;
}

.menu-toggle {
    display: none;
    font-size: 22px;
    background: none;
    border: none;
}

/* HERO */
.hero {
    background: var(--light);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
}

.hero p {
    margin: 20px 0;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.hero-points {
    list-style: none;
    display: flex;
    gap: 20px;
    font-size: 14px;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,.08);
}

.hero-image img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.035);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}



/* AUDIENCE */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.audience-card {
    padding: 28px;
    border-radius: 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}


.audience-card h5 {
    font-weight: 700;
    margin-bottom: 8px;
}


.audience-card:hover {
 transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    cursor:pointer;
}

.audience-icon {
    width:35px;
}

.blue { background: #eff6ff; }
.green { background: #ecfdf5; }
.purple { background: #f5f3ff; }
.pink { background: #fdf2f8; }

/* VALUE */
.value {
    background: var(--dark);
    color: white;
    text-align: center;
}

.value p {
    color: #cbd5e1;
    max-width: 700px;
    margin: 16px auto 0;
}

/* STEPS */
.how-it-works {
    padding: 100px 20px;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.step {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.step span {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #6c5ce7;
    color: #fff;
    font-weight: bold;
    margin-bottom: 16px;
}

.step h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.how-cta {
    display: inline-block;
    margin-top: 10px;
}

/* FEATURES */
.features-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); */
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 18px;
}

/* PRICING */
.pricing {
    background: var(--light);
}

/* .pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
} */

/* .pricing-toggle button {
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    font-weight: 600;
} */

/* .pricing-toggle button.active {
    background: var(--primary);
    color: white;
} */

/* .pricing-group {
    display: none;
}

.pricing-group.active {
    display: block;
} */

/* .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.price-card {
    padding: 40px;
    border-radius: 22px;
    background: white;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,.06);
} */

/* .price-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
} */

.pricing-section {
    padding: 80px 20px;
    /* background: #0f0f0f; */
    color: #fff;
    text-align: center;
}

.pricing-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f0f0f;
}

.pricing-subtitle {
    font-size: 16px;
    color: #1e1d1d;
    margin-bottom: 50px;
}

/* Grid */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: auto;
    margin-top:30px;
}

/* Card */

.pricing-card {
    background: #ffff;
    border-radius: 18px;
    padding: 30px 22px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

/* Hover Effect */

.pricing-card:hover {
    /* background: #202020; */
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.5);
}

/* Popular Highlight */

.pricing-card.popular {
    border: 1px solid #444;
    transform: scale(1.03);
}

/* Badge */

.price-badge {
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #1e1d1d;
    margin-bottom: 14px;
}

/* Credits */

.price-credits {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
}

/* Images */

.price-images {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 20px;
}

/* Price */

.price-amount {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
}

/* Button */

.price-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #333, #555);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    display:block;
    text-align: center;
    text-decoration: none;
}

.price-btn:hover {
    background: linear-gradient(135deg, #444, #666);
    box-shadow: 0 8px 18px rgba(255,255,255,0.05);
}

.price-btn:active {
    transform: scale(0.97);
}

.ribbon {
    position: absolute;
    top: 14px;
    right: -40px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #fff;
    padding: 12px 37px;
    font-size: 11px;
    font-weight: 600;
    /* text-transform: uppercase; */
    transform: rotate(45deg);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}


/* CTA */
.cta {
    background: var(--dark);
    color: white;
    text-align: center;
}

/* FOOTER */
.footer {
    background: #020617;
    color: #94a3b8;
    text-align: center;
    padding: 30px 0;
    font-size: 14px;
}

/* BUTTONS */
.btn {
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(135deg, #ff7a18, #ff2d55);
    color: white;
}

.btn-outline {
    border: 1px solid var(--border);
    color: var(--dark);
}

.btn-ghost {
    color: var(--dark);
}

/* ANIMATIONS */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav {
    display: none;
}


.before-after-section {
    padding: 4rem 1.5rem;
    text-align: center;
    background: #fafafa;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #666;
}


.ba-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1100px;
    margin: auto;
}

.ba-slider-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.ba-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px;
}

/* Navigation buttons */

.ba-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    border: none;
    color: white;
    font-size: 22px;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.ba-nav.prev { left: 10px; }
.ba-nav.next { right: 10px; }


.before-after-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    /* flex-wrap: wrap; */
}

.image-box {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.image-box:hover img {
    transform: scale(1.06);
}

.label {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    color: #fff;
}

.before-label {
    background: rgba(0, 0, 0, 0.7);
}

.after-label {
    background: rgba(34, 197, 94, 0.9);
}
.arrow-box {
    font-size: 2.5rem;
    font-weight: bold;
    color: #aaa;
    user-select: none;
}

.gradient-box {
  width: 54px;
  height: 47px;

  background: linear-gradient(
    135deg,
    #ff8a00 0%,
    #ff4d5a 50%,
    #ff2f92 100%
  );

  border-radius: 9px;
margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FAQ SECTION */

.faq-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #fff5f7 0%, #ffffff 100%);
}

.faq-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #0f172a;
}

/* Container */

.faq-container {
  max-width: 900px;
  margin: auto;
}

/* FAQ Card */

.faq-item {
  background: #ffffff;
  border-radius: 20px;
  margin-bottom: 25px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Question Button */

.faq-question {
  width: 100%;
  padding: 28px 30px;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* Plus Icon */

.faq-question .icon {
  font-size: 26px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

/* Answer */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 30px 25px;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

/* Active State */

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .arrow {
  transform: rotate(-135deg);
}


/* ARROW ICON */

.arrow {
  width: 12px;
  height: 12px;
  border-right: 2.5px solid #0f172a;
  border-bottom: 2.5px solid #0f172a;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.site-footer {
  background: radial-gradient(circle at top, #111c2f 0%, #0b1322 60%);
  padding: 80px 5% 30px;
  color: #cbd5e1;
  font-family: system-ui, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

/* BRAND */

.footer-brand h3 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #ff7a18, #ff2d55);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.brand-desc {
  margin-top: 14px;
  line-height: 1.6;
  max-width: 260px;
  color: #94a3b8;
}

/* FOOTER COLUMNS */

.footer-col h4 {
  font-size: 17px;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  text-decoration: none;
  color: #94a3b8;
  font-size: 15px;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #ffffff;
}

/* DIVIDER */

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 60px 0 25px;
}

/* BOTTOM TEXT */

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #64748b;
}

/* MOBILE RESPONSIVE */

/* @media (max-width: 900px) {

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

} */

/* @media (max-width: 500px) {

  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .brand-desc {
    max-width: 100%;
  }

} */


/* MOBILE */
@media (max-width: 768px) {
    .brand-desc {
        max-width: 100%;
    }

    .footer-container {
       grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid{
        grid-template-columns: 1fr;
    }

      .pricing-title {
        font-size: 26px;
    }

    .price-amount {
        font-size: 30px;
    }

    .before-after-wrapper {
        gap: 1rem;
    }

    .ba-nav {
        padding: 8px 10px;
        font-size: 18px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .nav, .header-actions {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-nav {
         display: flex; /* MUST stay flex */
        flex-direction: column;
        gap: 16px;
      
        border-top: 1px solid var(--border);

        /* Animation setup */
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-15px);
        pointer-events: none;

        transition: 
            max-height 0.4s ease,
            opacity 0.3s ease,
            transform 0.3s ease;
    }

    .mobile-nav.open {
       max-height: 500px; /* adjust if menu is taller */
        opacity: 1;
        transform: translateY(0);
          padding: 20px;
        pointer-events: auto;
    }

    .mobile-nav a{
        text-decoration: none;
        color: var(--dark);
        font-weight: 500;
    }
    .before-after-wrapper {
        flex-direction: column;
    }

    .arrow-box {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    .audience-card{
        text-align: center;
    }

    .feature {
        text-align: center;
    }

    .gradient-box {
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card {
        text-align: center;
    }
    .hero-actions {
        display:block;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}