/* ============================================================
   WooPlugins Homepage — Light Sky / Actulus-Inspired
   Heritage Color: #0B0C0F
   ============================================================ */

/* ---------- Dark Header Override → Now Light ---------- */
.site-header--dark {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0,0,0,0.06);
}
.site-header--dark .site-header__logo { color: #0B0C0F; }
.site-header--dark .site-header__logo-icon { color: #2563eb; }
.site-header--dark .site-nav__link { color: #475569; }
.site-header--dark .site-nav__link:hover { color: #0B0C0F; background: rgba(37,99,235,0.06); }
.site-header--dark .btn--ghost { color: #475569; }
.site-header--dark .btn--ghost:hover { background: rgba(37,99,235,0.06); color: #0B0C0F; }
.site-header--dark .site-header__mobile-toggle { color: #0B0C0F; }

/* ---------- MEGA MENU ---------- */
.site-nav__item--mega { position: static; }
.site-nav__mega-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    border-radius: 8px;
    transition: all 150ms ease;
    border: none;
    background: none;
    cursor: pointer;
    font-family: var(--font-body);
}
.site-nav__mega-trigger:hover { color: #0B0C0F; background: rgba(37,99,235,0.06); }
.site-nav__mega-trigger svg { transition: transform 150ms ease; }
.site-nav__mega-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.site-nav__mega-trigger[aria-expanded="true"] { color: #2563eb; background: rgba(37,99,235,0.08); }

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 0 1px rgba(0,0,0,0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 200;
}
.site-nav__mega-trigger[aria-expanded="true"] + .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.mega-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}
.mega-menu__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.mega-menu__brand-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mega-menu__brand strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0B0C0F;
}
.mega-menu__brand span {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 2px;
}

.mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.mega-menu__card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}
.mega-menu__card:hover {
    background: #f8fbff;
    border-color: rgba(37,99,235,0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.05);
}

.mega-menu__card-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mi-bg, #dbeafe);
    color: var(--mi-color, #2563eb);
    flex-shrink: 0;
}

.mega-menu__card-body strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: #0B0C0F;
    margin-bottom: 4px;
}
.mega-menu__card-body p {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Compact mega menu for More Plugins */
.mega-menu--compact .mega-menu__inner { max-width: 900px; }

.mega-menu__plugins-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.mega-menu__plugin-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 16px;
    background: #f8fbff;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    transition: all 0.25s ease;
}
.mega-menu__plugin-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37,99,235,0.06);
}

.mega-menu__plugin-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mp-bg, rgba(37,99,235,0.08));
    color: var(--mp-accent, #2563eb);
    flex-shrink: 0;
}

.mega-menu__plugin-body strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0B0C0F;
    margin-bottom: 6px;
}
.mega-menu__plugin-body p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Mega menu footer */
.mega-menu__footer {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mega-menu__footer-links { display: flex; gap: 1.5rem; }
.mega-menu__footer-links a {
    font-size: 0.82rem;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    transition: color 150ms;
}
.mega-menu__footer-links a:hover { color: #2563eb; }

/* Mega menu mobile */
@media (max-width: 768px) {
    .mega-menu {
        position: static;
        box-shadow: none;
        border-top: none;
        transform: none;
        background: var(--color-bg);
    }
    .mega-menu__grid { grid-template-columns: 1fr; }
    .mega-menu__plugins-grid { grid-template-columns: 1fr; }
    .mega-menu__header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .mega-menu__inner { padding: 1rem 0; }
    .mega-menu__footer { flex-direction: column; gap: 1rem; align-items: flex-start; }
}

/* ---------- Pill & Glow Buttons ---------- */
.btn--outline-white {
    background: transparent;
    color: #0B0C0F;
    border: 1.5px solid rgba(0,0,0,0.15);
}
.btn--outline-white:hover {
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.3);
    color: #0B0C0F;
}

/* ---------- HERO — Light Sky Gradient ---------- */
.v2-hero {
    position: relative;
    background: linear-gradient(180deg, #dbeafe 0%, #eff6ff 35%, #f8fbff 70%, #ffffff 100%);
    padding: calc(var(--header-height, 72px) + 80px) 0 6rem;
    overflow: hidden;
    text-align: center;
    color: #0B0C0F;
}

/* Decorative soft cloud shapes */
.v2-hero__decor {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.6;
}
.v2-hero__decor--1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
    top: -10%; left: -5%;
    animation: float-slow 8s ease-in-out infinite;
}
.v2-hero__decor--2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(96,165,250,0.15) 0%, transparent 70%);
    top: 20%; right: -5%;
    animation: float-slow 10s ease-in-out infinite reverse;
}
.v2-hero__decor--3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
    bottom: 10%; left: 30%;
    animation: float-slow 12s ease-in-out infinite;
}

/* Dot grid pattern */
.v2-hero__dots {
    position: absolute;
    width: 200px; height: 200px;
    background-image: radial-gradient(rgba(37,99,235,0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}
.v2-hero__dots--left { top: 15%; left: 5%; }
.v2-hero__dots--right { bottom: 20%; right: 5%; }

@keyframes float-slow {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.v2-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.v2-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 9999px;
    padding: 10px 22px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #475569;
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.v2-hero__badge-dot {
    width: 24px; height: 24px;
    border-radius: 8px;
    background: linear-gradient(135deg, #1a1b2e, #0B0C0F);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    animation: none;
}
.v2-hero__badge-dot svg {
    width: 14px;
    height: 14px;
    color: #fff;
}

.v2-hero__title {
    font-size: var(--text-7xl);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    color: #0B0C0F;
}
.v2-hero__title-gradient {
    color: #0B0C0F;
    -webkit-text-fill-color: #0B0C0F;
    background: none;
}

.v2-hero__subtitle {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 2.5rem;
}

.v2-hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ---------- Brand Slider ---------- */
.v2-brands {
    margin-top: 2.5rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.v2-brands__label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 1.25rem;
}
.v2-brands__track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 3rem;
    animation: brandScroll 15s linear infinite;
    width: max-content;
}
.v2-brands__track:hover { animation-play-state: paused; }
.v2-brands__slide {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}
.v2-brands__logo {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1e293b;
    white-space: nowrap;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.v2-brands__logo:hover { opacity: 1; }
.v2-brands__logo--playbill { font-family: Georgia, serif; letter-spacing: 0.08em; }
.v2-brands__logo--realsy { font-family: 'Georgia', serif; font-style: italic; color: #0d7377; font-size: 1.5rem; }
.v2-brands__logo--nordic { font-weight: 300; letter-spacing: 0.15em; font-size: 1.1rem; }
.v2-brands__logo--urban { letter-spacing: 0.25em; font-size: 1rem; }
.v2-brands__logo--bloom { font-family: Georgia, serif; font-style: italic; font-weight: 400; color: #4a6741; }
.v2-brands__logo--techgear { font-weight: 900; letter-spacing: -0.02em; color: #334155; }

@keyframes brandScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Floating plugin cards in hero */
.v2-hero__showcase {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 4rem;
}
.v2-hero__card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(0,0,0,0.06);
    backdrop-filter: blur(12px);
    padding: 14px 24px;
    border-radius: 16px;
    color: #0B0C0F;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: default;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.v2-hero__card:hover {
    transform: translateY(-4px);
    background: #fff;
    border-color: rgba(37,99,235,0.15);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    color: #0B0C0F;
}
.v2-hero__card-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.v2-hero__card--crm { animation: float-card 6s ease-in-out infinite; }
.v2-hero__card--loyalty { animation: float-card 6s ease-in-out infinite 1s; }
.v2-hero__card--seo { animation: float-card 6s ease-in-out infinite 2s; }

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ---------- WAVE SEPARATORS ---------- */
.v2-wave {
    position: absolute;
    left: 0; right: 0;
    width: 100%;
    line-height: 0;
    pointer-events: none;
    z-index: 3;
}
.v2-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}
.v2-wave--hero { bottom: -1px; }
.v2-wave--top { top: -1px; }
.v2-wave--bottom { bottom: -1px; }

/* ---------- STATS ---------- */
.v2-stats {
    padding: 4rem 0;
    background: #fff;
}
.v2-stats__grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
}
.v2-stats__item {
    text-align: center;
    flex: 1;
    max-width: 280px;
}
.v2-stats__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}
.v2-stats__icon--blue {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1d4ed8;
}
.v2-stats__icon--teal {
    background: linear-gradient(135deg, #ccfbf1, #99f6e4);
    color: #0d7377;
}
.v2-stats__icon--indigo {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    color: #4338ca;
}
.v2-stats__number {
    font-size: 2.8rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1;
}
.v2-stats__number span {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--stat-accent, #2563eb);
}
.v2-stats__item:nth-child(1) { --stat-accent: #2563eb; }
.v2-stats__item:nth-child(2) { --stat-accent: #0d9488; }
.v2-stats__item:nth-child(3) { --stat-accent: #4f46e5; }
.v2-stats__label {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.v2-stats__divider {
    display: none;
}

/* ---------- FEATURES ---------- */
.v2-features {
    padding: 5rem 0 6rem;
    background: #fff;
}

.v2-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}
.v2-section-header__label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2563eb;
    margin-bottom: 0.75rem;
    background: #eff6ff;
    padding: 6px 16px;
    border-radius: 9999px;
}
.v2-section-header__title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #0B0C0F;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}
.v2-section-header__sub {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
}

/* Light variant for dark sections */
.v2-section-header--light .v2-section-header__title { color: #fff; }
.v2-section-header--light .v2-section-header__sub { color: rgba(255,255,255,0.6); }
.v2-section-header__label--light {
    background: rgba(37,99,235,0.12);
    color: #93c5fd;
}

.v2-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.v2-feature-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.v2-feature-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: background 0.35s ease;
    pointer-events: none;
}
.v2-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    border-color: #bfdbfe;
}
.v2-feature-card:hover::before {
    background: linear-gradient(135deg, #2563eb, transparent 60%);
}

.v2-feature-card__icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: var(--icon-bg, #eff6ff);
    color: var(--icon-color, #2563eb);
    transition: transform 0.3s ease;
}
.v2-feature-card:hover .v2-feature-card__icon {
    transform: scale(1.1);
}

.v2-feature-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0B0C0F;
    margin-bottom: 0.75rem;
}
.v2-feature-card__desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.7;
}

/* ---------- PLUGINS SHOWCASE — Light Version ---------- */
.v2-plugins {
    position: relative;
    background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 50%, #eff6ff 100%);
    padding: 6rem 0 7rem;
    color: #0B0C0F;
}

.v2-plugins__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.v2-plugin-card {
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(8px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.v2-plugin-card:hover {
    background: #fff;
    border-color: rgba(37,99,235,0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.08);
}

.v2-plugin-card__head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}
.v2-plugin-card__icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--plugin-accent-light);
    color: var(--plugin-accent);
    flex-shrink: 0;
}
.v2-plugin-card__name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0B0C0F;
    margin-bottom: 0.15rem;
}
.v2-plugin-card__tagline {
    font-size: 0.8rem;
    color: #94a3b8;
}

.v2-plugin-card__features {
    flex: 1;
    margin-bottom: 1.5rem;
}
.v2-plugin-card__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #475569;
    padding: 8px 0;
}
.v2-plugin-card__feature svg { color: #2563eb; flex-shrink: 0; }

.v2-plugin-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}
.v2-plugin-card__price {
    font-size: 0.85rem;
    color: #64748b;
}
.v2-plugin-card__price strong {
    font-size: 1.3rem;
    color: #0B0C0F;
    font-weight: 800;
}
.v2-plugin-card__btn {
    color: #fff !important;
    padding: 10px 22px;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    transition: all 0.2s;
    background: #0B0C0F;
    border-radius: 9999px;
    cursor: pointer;
}
.v2-plugin-card__btn:hover {
    background: #1a1b20;
    box-shadow: 0 6px 20px rgba(11,12,15,0.2);
    transform: translateY(-1px);
    color: #fff;
}

/* ---------- TESTIMONIALS ---------- */
.v2-testimonials {
    padding: 5rem 0 6rem;
    background: #fff;
}
.v2-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.v2-testimonial {
    background: #f8fbff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    border-left: 3px solid #2563eb;
}
.v2-testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.v2-testimonial__stars {
    font-size: 1.2rem;
    color: #f59e0b;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.v2-testimonial__text {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.v2-testimonial__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.v2-testimonial__avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}
.v2-testimonial__name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #0B0C0F;
}
.v2-testimonial__role {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* ---------- CTA — Light Version ---------- */
.v2-cta {
    position: relative;
    background: linear-gradient(180deg, #dbeafe 0%, #eff6ff 50%, #f8fbff 100%);
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
}
.v2-cta__decor {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}
.v2-cta__decor--1 {
    width: 400px; height: 400px;
    background: rgba(37,99,235,0.1);
    top: -20%; left: 10%;
}
.v2-cta__decor--2 {
    width: 350px; height: 350px;
    background: rgba(96,165,250,0.08);
    bottom: -20%; right: 10%;
}

.v2-cta__inner {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}
.v2-cta__title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #0B0C0F;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.v2-cta__text {
    font-size: 1.15rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.v2-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .v2-features__grid,
    .v2-plugins__grid,
    .v2-testimonials__grid {
        grid-template-columns: 1fr 1fr;
    }
    .v2-hero__showcase { flex-wrap: wrap; }
}

@media (max-width: 768px) {
    /* --- Hero: Cin7-inspired mobile layout --- */
    .v2-hero {
        padding: var(--space-6) 0 2rem;
        text-align: left;
    }
    .v2-hero__inner {
        max-width: 100%;
    }

    /* Badge → simple uppercase label */
    .v2-hero__badge {
        background: none;
        border: none;
        backdrop-filter: none;
        box-shadow: none;
        padding: 0;
        font-size: 0.7rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: #2563eb;
        margin-bottom: 1.25rem;
    }
    .v2-hero__badge-dot { display: none; }

    /* Title with per-line highlight */
    .v2-hero__title {
        font-size: 2.5rem;
        line-height: 1.2;
        letter-spacing: -0.03em;
        margin-bottom: 1.75rem;
    }
    .v2-hero__title,
    .v2-hero__title-gradient {
        display: inline;
        -webkit-box-decoration-break: clone;
        box-decoration-break: clone;
        background: rgba(219, 234, 254, 0.55);
        padding: 2px 8px;
        border-radius: 4px;
    }

    /* Subtitle */
    .v2-hero__subtitle {
        font-size: 0.95rem;
        line-height: 1.7;
        max-width: 100%;
        margin-bottom: 2.5rem;
    }

    /* Stacked full-width pill buttons */
    .v2-hero__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    .v2-hero__actions .btn {
        text-align: center;
        justify-content: center;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-size: 0.85rem;
        font-weight: 700;
        padding: 1rem 2rem;
        border-radius: 9999px;
    }

    /* Hide floating showcase cards */
    .v2-hero__showcase { display: none; }

    /* Hide decorative elements */
    .v2-hero__dots { display: none; }
    .v2-hero__decor { display: none; }

    /* Wave */
    .v2-wave svg { height: 50px; }

    /* --- Stats --- */
    .v2-stats { padding: 2.5rem 0; }
    .v2-stats__grid { flex-direction: row !important; flex-wrap: nowrap !important; gap: 0.5rem; justify-content: center; }
    .v2-stats__item { flex: 1; max-width: none; padding: 0; }
    .v2-stats__icon { width: 40px; height: 40px; border-radius: 10px; margin-bottom: 0.75rem; }
    .v2-stats__icon svg { width: 20px; height: 20px; }
    .v2-stats__number { font-size: 1.5rem; }
    .v2-stats__number span { font-size: 1rem; }
    .v2-stats__label { font-size: 0.6rem; letter-spacing: 0.05em; }

    /* --- Grids --- */
    .v2-features__grid,
    .v2-plugins__grid,
    .v2-testimonials__grid {
        grid-template-columns: 1fr;
    }

    .v2-section-header__title { font-size: 2rem; }
    .v2-cta__title { font-size: 2rem; }
    .v2-cta__actions { flex-direction: column; align-items: stretch; }

    .v2-plugins { padding: 4rem 0 5rem; }

    .v2-support__grid { grid-template-columns: 1fr; }
    .v2-stories__card { min-width: 260px; }
    .v2-cta-visual__card { flex-direction: column; }
    .v2-cta-visual__graphic { display: none; }
    .v2-cta-visual__actions { flex-direction: column; align-items: stretch; }
}

/* ---------- Solutions Cards (Cin7-style) ---------- */
.v2-solutions {
    padding: 5rem 0 6rem;
    background: #fff;
}
.v2-solutions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.v2-solutions__card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem 2rem 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.v2-solutions__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    border-color: #bfdbfe;
}
.v2-solutions__card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.v2-solutions__card-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
}
.v2-solutions__card-arrow {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    transition: all 0.2s;
}
.v2-solutions__card:hover .v2-solutions__card-arrow {
    background: #2563eb;
    color: #fff;
}
.v2-solutions__card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0B0C0F;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}
.v2-solutions__card-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 1rem;
}
.v2-solutions__card-link {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #2563eb;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 1.5rem;
    transition: gap 0.2s;
}
.v2-solutions__card-link:hover { gap: 8px; }
.v2-solutions__card-link::after {
    content: '→';
    transition: transform 0.2s;
}
.v2-solutions__card:hover .v2-solutions__card-link::after {
    transform: translateX(2px);
}
.v2-solutions__card-visual {
    margin: 0 -2rem;
    background: linear-gradient(180deg, rgba(219,234,254,0.2) 0%, rgba(219,234,254,0.5) 100%);
    border-top: 1px solid rgba(37,99,235,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
    min-height: 140px;
}
.v2-solutions__card-visual--integrations {
    background: linear-gradient(180deg, rgba(237,233,254,0.2) 0%, rgba(237,233,254,0.5) 100%);
    border-top-color: rgba(139,92,246,0.08);
}
.v2-solutions__card-visual--industries {
    background: linear-gradient(180deg, rgba(207,250,254,0.2) 0%, rgba(207,250,254,0.5) 100%);
    border-top-color: rgba(6,182,212,0.08);
}
.v2-solutions__card-visual svg {
    width: 100%;
    max-width: 280px;
    height: auto;
}

/* ---------- Tabbed Features (Cin7-style) ---------- */
.v2-tabbed {
    padding: 5rem 0 6rem;
    background: linear-gradient(180deg, #f0f4ff 0%, #e8efff 50%, #f0f4ff 100%);
}
.v2-tabbed__pills {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.v2-tabbed__pill {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: 1.5px solid #c7d2fe;
    background: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-body);
    white-space: nowrap;
}
.v2-tabbed__pill:hover {
    border-color: #2563eb;
    color: #2563eb;
}
.v2-tabbed__pill--active {
    background: #0B0C0F;
    border-color: #0B0C0F;
    color: #fff;
}
.v2-tabbed__pill--active:hover {
    background: #1a1b2e;
    border-color: #1a1b2e;
    color: #fff;
}
.v2-tabbed__panels {
    position: relative;
}
.v2-tabbed__panel {
    display: none;
    align-items: center;
    gap: 3rem;
    background: #fff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.06);
}
.v2-tabbed__panel--active {
    display: flex;
}
.v2-tabbed__panel-text {
    flex: 1;
    min-width: 0;
}
.v2-tabbed__panel-text h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0B0C0F;
    margin-bottom: 1rem;
    line-height: 1.25;
}
.v2-tabbed__panel-text p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.v2-tabbed__panel-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    background: #2563eb;
    padding: 0.6rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.2s;
}
.v2-tabbed__panel-link:hover {
    background: #1d4ed8;
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}
.v2-tabbed__panel-graphic {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.v2-tabbed__panel-graphic svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

@media (max-width: 1024px) {
    .v2-solutions__grid { grid-template-columns: 1fr 1fr; }
    .v2-solutions__grid .v2-solutions__card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
    .v2-tabbed__panel { gap: 2rem; padding: 2rem; }
}
@media (max-width: 768px) {
    .v2-solutions { padding: 3rem 0 4rem; }
    .v2-solutions__grid { grid-template-columns: 1fr; }
    .v2-solutions__grid .v2-solutions__card:last-child { max-width: 100%; }
    .v2-solutions__card-title { font-size: 1.15rem; }
    .v2-solutions__card-visual { min-height: 100px; }

    .v2-tabbed { padding: 3rem 0 4rem; }
    .v2-tabbed__pills { gap: 0.375rem; }
    .v2-tabbed__pill { padding: 0.5rem 1rem; font-size: 0.75rem; }
    .v2-tabbed__panel { flex-direction: column; padding: 1.5rem; gap: 1.5rem; }
    .v2-tabbed__panel-text h3 { font-size: 1.25rem; }
    .v2-tabbed__panel-graphic svg { max-width: 100%; }
}

/* ---------- Support Section ---------- */
.v2-support {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
    position: relative;
    overflow: hidden;
}
.v2-support__decor {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
}
.v2-support__decor--1 {
    width: 300px; height: 300px;
    background: #dbeafe;
    top: -100px; right: -50px;
}
.v2-support__decor--2 {
    width: 250px; height: 250px;
    background: #ede9fe;
    bottom: -80px; left: -40px;
}
.v2-support__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}
.v2-support__card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.v2-support__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.v2-support__icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    background: var(--icon-bg);
    color: var(--icon-color);
}
.v2-support__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0B0C0F;
    margin-bottom: 0.5rem;
}
.v2-support__desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.65;
}
.v2-support__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}
@media (max-width: 768px) {
    .v2-support__grid { grid-template-columns: 1fr; }
    .v2-support__actions { flex-direction: column; align-items: center; }
}

/* ---------- Customer Stories ---------- */
.v2-stories {
    padding: 5rem 0;
    background: #fff;
}
.v2-stories__track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    margin-top: 2.5rem;
    padding-bottom: 0.5rem;
}
.v2-stories__track::-webkit-scrollbar { display: none; }
.v2-stories__card {
    min-width: 280px;
    flex: 0 0 280px;
    background: var(--card-gradient);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.2s;
}
.v2-stories__card:hover { transform: translateY(-4px); }
.v2-stories__label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.75;
}
.v2-stories__icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}
.v2-stories__name {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
}
.v2-stories__result {
    font-size: 0.9rem;
    line-height: 1.55;
    opacity: 0.9;
    margin: 0;
}
.v2-stories__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2rem;
}
.v2-stories__arrow {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid #cbd5e1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #475569;
    transition: all 0.15s;
}
.v2-stories__arrow:hover {
    border-color: #2563eb;
    color: #2563eb;
    background: #f0f7ff;
}
.v2-stories__nav-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ---------- Visual CTA ---------- */
.v2-cta-visual {
    padding: 4rem 0 5rem;
    background: #f8fbff;
}
.v2-cta-visual__card {
    background: linear-gradient(135deg, #0B0C0F 0%, #1a1b2e 100%);
    border-radius: 24px;
    padding: 3.5rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    overflow: hidden;
    position: relative;
}
.v2-cta-visual__content {
    flex: 1;
    min-width: 0;
}
.v2-cta-visual__title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.v2-cta-visual__text {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 480px;
}
.v2-cta-visual__actions {
    display: flex;
    gap: 1rem;
}
.v2-cta-visual__graphic {
    flex: 0 0 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.v2-cta-visual__svg {
    width: 100%;
    height: auto;
}
@media (max-width: 1024px) {
    .v2-cta-visual__card { padding: 2.5rem; }
    .v2-cta-visual__graphic { flex: 0 0 200px; }
}
@media (max-width: 768px) {
    .v2-cta-visual__card { flex-direction: column; padding: 2rem 1.5rem; }
    .v2-cta-visual__graphic { display: none; }
    .v2-cta-visual__title { font-size: 1.65rem; }
    .v2-cta-visual__actions { flex-direction: column; align-items: stretch; }
}
