/* ==========================================================================
   BGRemoval Top  |  Main Theme Stylesheet
   ========================================================================== */

/* -- Design Tokens -------------------------------------------------------- */
:root {
    --blue:       #4A6CF7;
    --blue-dark:  #3B5DE7;
    --teal:       #00D4AA;
    --navy:       #0F172A;
    --slate:      #1E293B;
    --g700:       #334155;
    --g600:       #475569;
    --g500:       #64748B;
    --g400:       #94A3B8;
    --g300:       #CBD5E1;
    --g200:       #E2E8F0;
    --g100:       #F1F5F9;
    --g50:        #F8FAFC;
    --white:      #FFFFFF;
    --red:        #EF4444;
    --yellow:     #FBBF24;
    --peach:      #FFF7ED;
    --cream:      #FFFBEB;
    --lavender:   #F5F3FF;
    --mint:       #ECFDF5;
    --sky:        #EFF6FF;
    --rose:       #FFF1F2;
    --font:       'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --shadow:     0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
    --shadow-md:  0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.04);
    --shadow-lg:  0 20px 25px -5px rgba(0,0,0,.08), 0 8px 10px -6px rgba(0,0,0,.04);
    --r:          12px;
    --r-lg:       16px;
    --r-xl:       24px;
}

/* -- Reset & Base --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.6;
    color: var(--g700);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease, border-color .2s ease, opacity .2s ease; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* -- Container ------------------------------------------------------------ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: transparent;
    transition: background .3s ease, padding .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 0;
    border-bottom: 1px solid var(--g200);
    box-shadow: var(--shadow);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
}
.logo-dot { color: var(--blue); }
.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation */
.site-nav .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    list-style: none;
}
.site-nav .nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--g500);
    transition: color .2s ease;
}
.site-nav .nav-links a:hover {
    color: var(--navy);
}

/* Mobile Menu Toggle */
.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 26px;
    padding: 0;
    cursor: pointer;
    background: none;
    border: none;
}
.menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
    transform-origin: center;
}
.menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(175deg, #FFF7ED 0%, #FFFBEB 40%, var(--white) 80%);
    position: relative;
    overflow: hidden;
}

/* Decorative glow blob */
.hero-glow,
.hero::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -160px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251,191,36,.15) 0%, rgba(251,146,60,.05) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }

.hero-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}
.hero-center .hero-sub {
    margin-left: auto;
    margin-right: auto;
}
.hero-stats-row {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 24px;
}
.hero-tool {
    max-width: 700px;
    margin: 0 auto 48px;
}
.hero-slider {
    max-width: 560px;
    margin: 0 auto;
}
.shortcode-placeholder {
    padding: 40px 32px;
    border: 2px dashed var(--g300);
    border-radius: var(--r-lg);
    background: var(--white);
    text-align: center;
    color: var(--g500);
    font-size: 14px;
}
.shortcode-placeholder strong {
    color: var(--navy);
}
.cta-tool {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px 5px 8px;
    background: rgba(74,108,247,.06);
    border: 1px solid rgba(74,108,247,.12);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 16px;
}
.hero-badge i {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .45; transform: scale(1.4); }
}

/* Hero Typography */
.hero h1 {
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.5px;
    color: var(--navy);
    margin-bottom: 16px;
}
.hero h1 span { color: var(--blue); }

.hero-sub {
    font-size: 16px;
    color: var(--g500);
    max-width: 440px;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ==========================================================================
   UPLOAD BOX
   ========================================================================== */
.upload-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 28px 32px;
    border: 2px dashed var(--g300);
    border-radius: var(--r-lg);
    background: var(--white);
    cursor: pointer;
    text-align: center;
    transition: border-color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease;
}
.upload-box:hover {
    border-color: var(--blue);
    background: rgba(74,108,247,.02);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}
.upload-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(74,108,247,.3);
}
.upload-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
}
.upload-hint {
    font-size: 12px;
    color: var(--g400);
}
.upload-fmt {
    font-size: 11px;
    color: var(--g400);
}

/* ==========================================================================
   HERO STATS
   ========================================================================== */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 24px;
}
.stat { text-align: center; }
.stat strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
}
.stat span {
    font-size: 12px;
    color: var(--g500);
}
.stat + .stat {
    padding-left: 24px;
    border-left: 1px solid var(--g200);
}

/* ==========================================================================
   BEFORE / AFTER SLIDER  (remove.bg style)
   ========================================================================== */
.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: col-resize;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
    background-image:
        linear-gradient(45deg, #e0e0e0 25%, transparent 25%),
        linear-gradient(-45deg, #e0e0e0 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #e0e0e0 75%),
        linear-gradient(-45deg, transparent 75%, #e0e0e0 75%);
    background-size: 16px 16px;
    background-position: 0 0, 0 8px, 8px -8px, -8px 0;
    background-color: #f0f0f0;
}
.ba-img-wrap {
    position: absolute;
    inset: 0;
}
.ba-img-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    pointer-events: none;
}
.ba-img-before {
    z-index: 1;
    clip-path: inset(0 50% 0 0);
}
.ba-img-after {
    z-index: 1;
    clip-path: inset(0 0 0 50%);
}
.ba-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    margin-left: -2px;
    background: var(--white);
    z-index: 10;
    box-shadow: 0 0 12px rgba(0,0,0,.2);
}
.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
    transition: transform .15s ease, box-shadow .15s ease;
}
.ba-handle svg {
    stroke: var(--navy);
}
.ba-handle:hover,
.ba-slider.ba-active .ba-handle {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.ba-tag {
    position: absolute;
    top: 16px;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--white);
    z-index: 5;
    pointer-events: none;
}
.ba-tag-before {
    left: 16px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
}
.ba-tag-after {
    right: 16px;
    background: rgba(74,108,247,0.8);
    backdrop-filter: blur(4px);
}
.ba-placeholder {
    padding: 48px 24px;
    border: 2px dashed var(--g300);
    border-radius: var(--r-xl);
    background: var(--g50);
    text-align: center;
    color: var(--g500);
    font-size: 14px;
}
.ba-placeholder strong { color: var(--navy); }

/* ==========================================================================
   FEATURE BAR
   ========================================================================== */
.feature-bar {
    padding: 24px 0;
    border-top: none;
    border-bottom: none;
    background: linear-gradient(135deg, #4A6CF7 0%, #7C3AED 100%);
    color: var(--white);
}
.fb-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.fb-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.fb-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--r);
    background: rgba(255,255,255,.15);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.fb-item strong {
    display: block;
    font-size: 13px;
    color: var(--white);
}
.fb-item small {
    font-size: 11px;
    color: rgba(255,255,255,.7);
}

/* ==========================================================================
   SECTION COMMONS
   ========================================================================== */
.section { padding: 80px 0; }
.section-gray { background: var(--g50); }
.section-cream { background: var(--cream); }
.section-sky { background: var(--sky); }
.section-mint { background: var(--mint); }
.section-lavender { background: var(--lavender); }
.section-peach { background: var(--peach); }
.section-rose { background: var(--rose); }

.sec-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 48px;
}
.sec-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(74,108,247,.06);
    color: var(--blue);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 12px;
}
.sec-title {
    font-size: clamp(24px, 3.5vw, 34px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.6px;
    line-height: 1.15;
    margin-bottom: 10px;
}
.sec-title span { color: var(--blue); }
.sec-sub {
    font-size: 15px;
    color: var(--g500);
    line-height: 1.7;
}

/* ==========================================================================
   HOW IT WORKS  (Steps)
   ========================================================================== */
.steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.step-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1px solid var(--g200);
    max-width: 260px;
    position: relative;
    transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.step-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: rgba(74,108,247,.12);
}
.step-num {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.step-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r);
    background: rgba(74,108,247,.06);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4px auto 16px;
}
.step-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}
.step-card p {
    font-size: 13px;
    color: var(--g500);
    line-height: 1.6;
}
.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--g300);
    padding-top: 40px;
    margin: 0 8px;
    flex-shrink: 0;
}

/* ==========================================================================
   FEATURE CARDS
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.feat-card {
    padding: 28px;
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1px solid var(--g200);
    transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}
.feat-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(74,108,247,.1);
    transform: translateY(-2px);
}
.feat-card-main {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 28px;
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1px solid var(--g200);
    transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}
.feat-card-main:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(74,108,247,.1);
    transform: translateY(-2px);
}
.feat-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r);
    background: rgba(74,108,247,.06);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.feat-icon-filled {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(74,108,247,.25);
}
.feat-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}
.feat-card p,
.feat-card-main p {
    font-size: 13px;
    color: var(--g500);
    line-height: 1.65;
}
.feat-card-main h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

/* Checklist inside feature cards */
.check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
}
.check-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--g700);
}
.check-list svg {
    color: var(--teal);
    flex-shrink: 0;
}

/* ==========================================================================
   USE CASES
   ========================================================================== */
.uc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.uc-card {
    padding: 28px 24px;
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1px solid var(--g200);
    transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}
.uc-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(74,108,247,.1);
    transform: translateY(-2px);
}
.uc-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r);
    background: rgba(74,108,247,.06);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.uc-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.uc-card p {
    font-size: 13px;
    color: var(--g500);
    line-height: 1.6;
}

/* ==========================================================================
   WHY US
   ========================================================================== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.why-content .sec-title { text-align: left; }
.why-content > p {
    font-size: 15px;
    color: var(--g500);
    line-height: 1.7;
    margin-bottom: 24px;
}
.why-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.why-item {
    display: flex;
    gap: 12px;
}
.why-check {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0,212,170,.1);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.why-item strong {
    display: block;
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 2px;
}
.why-item p {
    font-size: 13px;
    color: var(--g500);
    margin: 0;
}

/* ==========================================================================
   COMPARISON CARDS
   ========================================================================== */
.cmp-cards {
    display: flex;
    gap: 14px;
}
.cmp {
    flex: 1;
    background: var(--white);
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--g200);
}
.cmp-dim { opacity: 0.8; }
.cmp-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
}
.cmp-head-us {
    background: rgba(74,108,247,.05);
    color: var(--blue);
}
.cmp-head-them {
    background: var(--g100);
    color: var(--g500);
}
.cmp ul {
    padding: 4px 16px 16px;
    list-style: none;
}
.cmp li {
    padding: 6px 0;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--g200);
    color: var(--g700);
}
.cmp li:last-child { border-bottom: none; }

/* Dots */
.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.dot::after {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
}
.dot-yes { background: rgba(0,212,170,.12); }
.dot-yes::after { background: var(--teal); }
.dot-no { background: rgba(239,68,68,.08); }
.dot-no::after { background: var(--red); }
.dot-warn { background: rgba(251,191,36,.1); }
.dot-warn::after { background: var(--yellow); }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.t-card {
    padding: 24px;
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1px solid var(--g200);
    transition: box-shadow .2s ease, transform .2s ease;
}
.t-card:hover {
    box-shadow: var(--shadow-md);
}
.t-card-feat {
    border-color: rgba(74,108,247,.15);
    box-shadow: var(--shadow);
    position: relative;
}
.t-card-feat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--blue);
    border-radius: var(--r-lg) var(--r-lg) 0 0;
}

/* Stars */
.stars {
    display: flex;
    gap: 1px;
    margin-bottom: 12px;
}
.stars svg {
    fill: var(--yellow);
    width: 14px;
    height: 14px;
}

.t-card blockquote {
    font-size: 13px;
    color: var(--g600);
    line-height: 1.7;
    margin: 0 0 18px 0;
    padding: 0;
    border: none;
    font-style: normal;
    quotes: none;
}
.t-card blockquote::before,
.t-card blockquote::after { content: none; }

/* Author */
.t-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.t-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}
.t-author strong {
    display: block;
    font-size: 13px;
    color: var(--navy);
}
.t-author small {
    font-size: 11px;
    color: var(--g500);
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-wrap {
    text-align: center;
    padding: 64px 32px;
    background: var(--g50);
    border-radius: var(--r-xl);
    position: relative;
    overflow: hidden;
}
.cta-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(74,108,247,.04) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}
.cta-wrap h2 {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
    position: relative;
}
.cta-wrap > p {
    font-size: 15px;
    color: var(--g500);
    margin-bottom: 32px;
    position: relative;
}

.cta-upload {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 32px 48px;
    border: 2px dashed rgba(74,108,247,.2);
    border-radius: var(--r-xl);
    background: var(--white);
    cursor: pointer;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
    position: relative;
}
.cta-upload:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.cta-upload-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(74,108,247,.3);
}

.cta-try {
    margin-top: 16px;
    font-size: 13px;
    color: var(--g400);
    position: relative;
}
.cta-try a {
    color: var(--blue);
    font-weight: 500;
}
.cta-try a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {}

.footer-main {
    background: var(--navy);
    color: var(--g400);
    padding: 48px 0 36px;
}
.footer-cols {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    text-decoration: none;
}

.footer-about p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--g500);
    margin-bottom: 16px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
}
.social-links a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    color: var(--g500);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, color .2s ease;
}
.social-links a:hover {
    background: var(--blue);
    color: var(--white);
}

/* Footer Columns */
.footer-col h4 {
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}
.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
}
.footer-col a {
    font-size: 13px;
    color: var(--g500);
    transition: color .2s ease;
}
.footer-col a:hover { color: var(--white); }

/* Footer Bottom */
.footer-bottom {
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,.06);
    background: var(--navy);
}
.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,.3);
    text-align: center;
}

/* ==========================================================================
   ENTRY STYLES  (Regular Pages)
   ========================================================================== */
.entry {
    padding: 120px 0 60px;
}
.entry-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
}
.entry-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--g700);
}
.entry-content h2 { font-size: 26px; font-weight: 700; margin: 28px 0 14px; color: var(--navy); }
.entry-content h3 { font-size: 20px; font-weight: 700; margin: 22px 0 10px; color: var(--navy); }
.entry-content p  { margin-bottom: 14px; }
.entry-content ul,
.entry-content ol { padding-left: 22px; margin-bottom: 14px; list-style: revert; }
.entry-content li { margin-bottom: 6px; }
.entry-content a  { color: var(--blue); text-decoration: underline; }
.entry-content a:hover { color: var(--blue-dark); }

.elementor-full-width-wrapper { width: 100%; }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s ease, transform .5s ease;
}
.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* ---- Tablet & small desktop ---- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-stats { justify-content: center; }
    .hero-tool, .hero-slider { max-width: 100%; }

    .fb-grid { grid-template-columns: repeat(2, 1fr); }

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

    .why-grid { grid-template-columns: 1fr; gap: 36px; }
    .why-content .sec-title { text-align: center; }

    .test-grid { grid-template-columns: repeat(2, 1fr); }

    .footer-cols { grid-template-columns: repeat(2, 1fr); }

    .uc-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .section { padding: 48px 0; }

    /* Header / Nav */
    .site-header { padding: 12px 0; }
    .site-header.scrolled { padding: 8px 0; }
    .site-logo { font-size: 16px; gap: 7px; }
    .site-logo .logo-icon svg { width: 24px; height: 24px; }

    .site-nav {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 80px 28px 32px;
        z-index: 99;
        overflow-y: auto;
    }
    .site-nav.nav-open {
        display: block;
    }
    .site-nav .nav-links {
        flex-direction: column;
        gap: 20px;
    }
    .site-nav .nav-links a {
        font-size: 16px;
        padding: 8px 0;
    }
    .menu-btn {
        display: flex;
        z-index: 101;
    }

    /* Hero */
    .hero { padding: 100px 0 48px; }
    .hero-center { margin-bottom: 28px; }
    .hero-sub { font-size: 14px; margin-bottom: 20px; }
    .hero-stats-row { gap: 16px; flex-wrap: wrap; justify-content: center; }
    .stat strong { font-size: 18px; }
    .stat span { font-size: 11px; }
    .stat + .stat { padding-left: 16px; }

    /* Section headers */
    .section-hdr { margin-bottom: 32px; }
    .section-hdr h2 { font-size: 22px; }
    .section-hdr > p { font-size: 14px; }

    /* Steps */
    .steps-row,
    .steps {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }
    .step-arrow { display: none; }
    .step-card { max-width: 100%; }

    /* Feature bar */
    .fb-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .fb-item { gap: 8px; }
    .fb-item strong { font-size: 12px; }
    .fb-item small { font-size: 10px; }

    /* Features */
    .feat-card { padding: 20px; }
    .feat-main-grid { grid-template-columns: 1fr; }

    /* Use cases */
    .uc-grid { grid-template-columns: 1fr; }
    .uc-card { padding: 20px 16px; }

    /* Why us */
    .why-grid { grid-template-columns: 1fr; }
    .why-left h2 { text-align: center; font-size: 22px; }
    .why-left > p { text-align: center; }
    .why-left .badge { display: block; text-align: center; }

    /* Comparison */
    .cmp-cards,
    .why-right { flex-direction: column; }

    /* Testimonials */
    .test-grid { grid-template-columns: 1fr; }
    .test-card { padding: 20px; }
    .test-card blockquote { font-size: 13px; }

    /* CTA */
    .cta-card { padding: 36px 16px; }
    .cta-card h2 { font-size: 20px; }
    .cta-card > p { font-size: 14px; margin-bottom: 24px; }
    .cta-wrap { padding: 36px 16px; }
    .cta-upload { padding: 24px 20px; }

    /* Shortcode */
    .shortcode-placeholder { padding: 28px 16px; font-size: 13px; }

    /* Before/after slider */
    .hero-slider { max-width: 100%; }
    .ba-slider { aspect-ratio: 3 / 4; border-radius: var(--r-lg); }
    .ba-handle { width: 40px; height: 40px; }
    .ba-handle svg { width: 20px; height: 20px; }
    .ba-tag { font-size: 10px; padding: 4px 10px; top: 10px; }
    .ba-tag-before { left: 10px; }
    .ba-tag-after { right: 10px; }
    .ba-placeholder { padding: 32px 16px; font-size: 13px; }

    /* Footer */
    .footer-cols { grid-template-columns: 1fr; gap: 24px; }
    .footer-main { padding: 36px 0 28px; }
    .footer-about p { font-size: 12px; }

    /* WhatsApp */
    .whatsapp-float { bottom: 16px; right: 16px; width: 50px; height: 50px; }
    .whatsapp-float svg { width: 24px; height: 24px; }

    /* Ads */
    .ad-area-mid-page .ad-widget,
    .ad-area-before-footer .ad-widget { max-width: 100%; }
}

/* ---- Small phones ---- */
@media (max-width: 480px) {
    .hero h1 { font-size: 26px; letter-spacing: -0.8px; }
    .hero { padding: 90px 0 36px; }
    .hero-sub { font-size: 13px; max-width: 100%; }
    .hero-stats-row { gap: 12px; }
    .stat strong { font-size: 16px; }
    .stat + .stat { padding-left: 12px; }
    .section { padding: 40px 0; }
    .section-hdr h2 { font-size: 20px; }
    .fb-grid { grid-template-columns: 1fr; }
    .cta-card h2 { font-size: 18px; }
    .upload-box { padding: 22px 16px; }
    .benefit { gap: 10px; }
    .benefit-check { width: 26px; height: 26px; }
    .compare-card li { font-size: 12px; }
    .footer-col h4 { margin-top: 8px; }
}

/* ==========================================================================
   CLASS ALIASES  (front-page.php naming → CSS tokens)
   ========================================================================== */
.badge              { display: inline-block; padding: 4px 12px; background: rgba(74,108,247,.06); color: var(--blue); border-radius: 100px; font-size: 12px; font-weight: 600; letter-spacing: .3px; margin-bottom: 12px; }
.hero .badge        { display: inline-flex; align-items: center; gap: 6px; padding: 5px 14px 5px 8px; border: 1px solid rgba(74,108,247,.12); margin-bottom: 16px; }
.section-hdr        { text-align: center; max-width: 560px; margin: 0 auto 48px; }
.section-hdr h2     { font-size: clamp(24px, 3.5vw, 34px); font-weight: 800; color: var(--navy); letter-spacing: -.6px; line-height: 1.15; margin-bottom: 10px; }
.section-hdr h2 span{ color: var(--blue); }
.section-hdr > p    { font-size: 15px; color: var(--g500); line-height: 1.7; }
.stats-row          { display: flex; gap: 24px; margin-top: 24px; justify-content: center; }
.hero-left, .hero-right { min-width: 0; }
.fb-icon            { width: 40px; height: 40px; border-radius: var(--r); background: rgba(74,108,247,.06); color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fb-item svg        { color: var(--blue); flex-shrink: 0; }
.steps              { display: flex; align-items: flex-start; justify-content: center; }
.step-arrow         { display: flex; align-items: center; color: var(--g300); padding-top: 40px; margin: 0 8px; }
.feat-main          { grid-column: 1 / -1; }
.feat-main-grid     { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.feat-icon-wrap     { width: 44px; height: 44px; border-radius: var(--r); background: rgba(74,108,247,.06); color: var(--blue); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feat-main .feat-icon-wrap { background: var(--blue); color: var(--white); box-shadow: 0 4px 12px rgba(74,108,247,.25); }
.checklist          { display: flex; flex-direction: column; gap: 12px; list-style: none; }
.checklist li       { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--g700); }
.checklist svg      { color: var(--teal); flex-shrink: 0; }
.why-left           { }
.why-left .badge    { text-align: left; }
.why-left h2        { font-size: clamp(24px, 3.5vw, 34px); font-weight: 800; color: var(--navy); letter-spacing: -.6px; line-height: 1.15; margin-bottom: 10px; text-align: left; }
.why-left h2 span   { color: var(--blue); }
.why-left > p       { font-size: 15px; color: var(--g500); line-height: 1.7; margin-bottom: 24px; }
.benefits           { display: flex; flex-direction: column; gap: 20px; }
.benefit            { display: flex; gap: 12px; }
.benefit-check      { width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0; background: rgba(0,212,170,.1); color: var(--teal); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.benefit strong     { display: block; font-size: 14px; color: var(--navy); margin-bottom: 2px; }
.benefit p          { font-size: 13px; color: var(--g500); margin: 0; }
.why-right          { display: flex; gap: 14px; }
.compare-card       { flex: 1; background: var(--white); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--g200); }
.compare-them       { opacity: .8; }
.compare-hdr        { display: flex; gap: 8px; align-items: center; padding: 12px 16px; font-size: 13px; font-weight: 600; }
.compare-us .compare-hdr  { background: rgba(74,108,247,.05); color: var(--blue); }
.compare-them .compare-hdr { background: var(--g100); color: var(--g500); }
.compare-card ul    { padding: 4px 16px 16px; list-style: none; }
.compare-card li    { padding: 6px 0; font-size: 13px; display: flex; align-items: center; gap: 6px; border-bottom: 1px solid var(--g200); color: var(--g700); }
.compare-card li:last-child { border-bottom: none; }
.dot                { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.dot::after         { content: ''; width: 7px; height: 7px; border-radius: 50%; }
.dot-green          { background: rgba(0,212,170,.12); }
.dot-green::after   { background: var(--teal); }
.dot-red            { background: rgba(239,68,68,.08); }
.dot-red::after     { background: var(--red); }
.dot-yellow         { background: rgba(251,191,36,.1); }
.dot-yellow::after  { background: var(--yellow); }
.test-card          { padding: 24px; background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--g200); transition: box-shadow .2s, transform .2s; }
.test-card:hover    { box-shadow: var(--shadow-md); }
.test-featured      { border-color: rgba(74,108,247,.15); box-shadow: var(--shadow); position: relative; }
.test-featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--blue); border-radius: var(--r-lg) var(--r-lg) 0 0; }
.stars              { display: flex; gap: 1px; margin-bottom: 12px; }
.stars svg          { fill: var(--yellow); width: 14px; height: 14px; }
.test-card blockquote { font-size: 13px; color: var(--g600); line-height: 1.7; margin-bottom: 18px; }
.test-author        { display: flex; gap: 10px; align-items: center; }
.avatar             { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 12px; font-weight: 700; flex-shrink: 0; }
.test-author strong { display: block; font-size: 13px; color: var(--navy); }
.test-author small  { font-size: 11px; color: var(--g500); }
.cta-card           { text-align: center; padding: 64px 32px; background: var(--g50); border-radius: var(--r-xl); position: relative; overflow: hidden; }
.cta-card::before   { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(74,108,247,.04) 1px, transparent 1px); background-size: 20px 20px; }
.cta-card h2        { font-size: clamp(22px, 3vw, 30px); font-weight: 800; color: var(--navy); margin-bottom: 8px; position: relative; }
.cta-card > p       { font-size: 15px; color: var(--g500); margin-bottom: 32px; position: relative; }
.cta-card .upload-box { position: relative; border-color: rgba(74,108,247,.2); }
.sample-link        { display: inline-block; margin-top: 16px; font-size: 13px; color: var(--blue); font-weight: 500; position: relative; }
.sample-link:hover  { text-decoration: underline; }

/* ==========================================================================
   AD WIDGET AREAS
   ========================================================================== */
.hero-tool-row {
    display: flex;
    gap: 24px;
    max-width: 960px;
    margin: 0 auto 48px;
    align-items: flex-start;
}
.hero-tool-main {
    flex: 1;
    min-width: 0;
}
.hero-tool-row .hero-tool {
    max-width: 100%;
    margin: 0 0 20px;
}
.ad-area-sidebar {
    width: 300px;
    flex-shrink: 0;
}
.ad-widget {
    background: var(--g50);
    border: 1px dashed var(--g300);
    border-radius: var(--r);
    padding: 16px;
    text-align: center;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.ad-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--g400);
    margin-bottom: 8px;
}
.ad-area-below-tool {
    margin-top: 20px;
}
.ad-area-mid-page {
    padding: 24px 0;
    text-align: center;
}
.ad-area-mid-page .ad-widget {
    max-width: 728px;
    margin: 0 auto;
}
.ad-area-before-footer {
    padding: 24px 0;
    text-align: center;
    background: var(--g50);
}
.ad-area-before-footer .ad-widget {
    max-width: 728px;
    margin: 0 auto;
}

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37,211,102,.4);
    z-index: 99;
    transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,211,102,.5);
}

/* Feature bar gradient variant */
.feature-bar        { padding: 20px 0; background: linear-gradient(135deg, #4A6CF7 0%, #7C3AED 100%); color: var(--white); }
.feature-bar .fb-item strong { color: var(--white); }
.feature-bar .fb-item small  { color: rgba(255,255,255,.7); }
.feature-bar .fb-item svg    { color: rgba(255,255,255,.8); }
.feature-bar .fb-icon        { background: rgba(255,255,255,.15); color: var(--white); }
.feature-bar .fb-grid        { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* Additional responsive for aliases */
@media (max-width: 1024px) {
    .feat-main-grid { grid-template-columns: 1fr; }
    .why-left h2    { text-align: center; }
    .feature-bar .fb-grid { grid-template-columns: repeat(2,1fr); }
    .hero-tool-row   { flex-direction: column; max-width: 700px; }
    .ad-area-sidebar { width: 100%; }
    .ad-area-sidebar .ad-widget { min-height: 100px; }
}
