/* =========================
   CSS VARIABLES
   ========================= */

:root {
    --primary-gradient: linear-gradient(135deg, #9333ea, #db2777);
    --secondary-gradient: linear-gradient(to right, #9333ea, #db2777);
    --bg-white-80: rgba(255, 255, 255, 0.8);
    --border-gray-200: rgba(229, 231, 235, 0.5);
    --text-gray-700: #374151;
    --text-gray-900: #111827;
    --purple-600: #9333ea;
    --pink-600: #db2777;
    --max-w-7xl: 1280px;
    --primary: #7c3aed;
    --secondary: #ec4899;
    --accent: #06b6d4;
    --dark: #0f172a;
    --muted: #64748b;
    --soft-bg: #f8fafc;
    --white: #ffffff;
    --border: #e5e7eb;
    --radius: 20px;
    --radius-pill: 9999px;
    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.08);
}


/* =========================
   RESET & BASE
   ========================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}


body {
    font-family: "Inter", sans-serif !important;
    background-color: #f9fafb;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-gray-900);
    overflow-x: hidden;
    width: 100%;
}


h1,
h2,
h3,
h4,
h5,
h6,
button,
input,
select,
textarea,
.logo-text,
.platform-title {
    font-family: "Inter", sans-serif !important;
}


/* ==========================================
   FONT AWESOME PROTECTION
   ========================================== */

/* Solid */
.fa-solid,
.fas,
.fa-solid::before,
.fas::before {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

/* Regular */
.fa-regular,
.far,
.fa-regular::before,
.far::before {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 400 !important;
}

/* Brands */
.fa-brands,
.fab,
.fa-brands::before,
.fab::before {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}


img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}


a {
    text-decoration: none;
    color: #ffffff;
}

/* =========================
   ANIMATIONS
   ========================= */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes mobileMenuFadeIn {
    from {
        opacity: 0;
        height: 0;
    }

    to {
        opacity: 1;
        height: auto;
    }
}

@keyframes fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-right {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes live-pulse-anim-new {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

@keyframes float-insta {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes float-fb {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(25px) rotate(-15deg);
    }
}

@keyframes float-linkedin {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, -30px);
    }
}

@keyframes float-yt {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(20px) rotate(12deg);
    }
}

@keyframes float-twitter {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-15px) rotate(-10deg);
    }
}

@keyframes float-tiktok {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-10px, 25px);
    }
}

@keyframes heart-pulse {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

@keyframes sparkle-rotate {
    0% {
        transform: rotate(0) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.2);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes thumbs-float {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(15px) rotate(-15deg);
    }
}

@keyframes star-rotate {
    0% {
        transform: rotate(0) translateY(0);
    }

    50% {
        transform: rotate(180deg) translateY(-10px);
    }

    100% {
        transform: rotate(360deg) translateY(0);
    }
}

@keyframes message-float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(8px, -18px);
    }
}

@keyframes zap-scale {

    0%,
    100% {
        transform: scale(1) rotate(0);
    }

    50% {
        transform: scale(1.3) rotate(-20deg);
    }
}

@keyframes sparkles-s1-anim {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
}

@keyframes ai-orb-float-tl {

    0%,
    100% {
        transform: scale(1) translateY(0);
    }

    50% {
        transform: scale(1.3) translateY(40px);
    }
}

@keyframes ai-orb-float-br {

    0%,
    100% {
        transform: scale(1) translateX(0);
    }

    50% {
        transform: scale(1.2) translateX(-30px);
    }
}

@keyframes cta-orb-indigo-anim {

    0%,
    100% {
        transform: translateY(-50%) scale(1) translateY(-20px);
    }

    50% {
        transform: translateY(-50%) scale(1.2) translateY(20px);
    }
}

@keyframes cta-orb-pink-anim {

    0%,
    100% {
        transform: scale(1) translateY(20px);
    }

    50% {
        transform: scale(1.3) translateY(-20px);
    }
}

@keyframes cta-orb-purple-anim {

    0%,
    100% {
        transform: scale(1) translateX(-15px);
    }

    50% {
        transform: scale(1.15) translateX(15px);
    }
}

@keyframes spin-cw {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin-ccw {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@keyframes float-bob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-11px);
    }
}

@keyframes float-bob-b {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@keyframes ping-ring {
    0% {
        transform: scale(.85);
        opacity: .7;
    }

    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

@keyframes sparkle-pop {

    0%,
    100% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }

    50% {
        transform: scale(1) rotate(20deg);
        opacity: 1;
    }
}

@keyframes drift-up {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(5px, -12px) rotate(4deg);
    }
}

@keyframes drift-down {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-7px, 9px) rotate(-4deg);
    }
}

@keyframes marquee-fwd {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes marquee-rev {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes draw-path {
    from {
        stroke-dashoffset: 350;
        opacity: 0;
    }

    to {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

@keyframes badge-in {
    from {
        transform: scale(.7) translateY(6px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(124, 58, 237, .18);
    }

    50% {
        box-shadow: 0 0 24px 6px rgba(124, 58, 237, .18);
    }
}

@keyframes shimmer-pill {

    0%,
    100% {
        opacity: .75;
    }

    50% {
        opacity: 1;
    }
}

@keyframes orbit {
    0% {
        transform: rotate(0deg) translateX(38px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(38px) rotate(-360deg);
    }
}

@keyframes orbit2 {
    0% {
        transform: rotate(90deg) translateX(52px) rotate(-90deg);
    }

    100% {
        transform: rotate(450deg) translateX(52px) rotate(-450deg);
    }
}



/* Scrolable Platform RIBON Icons CSS  */

.platform-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 8px 18px;
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
    animation: shimmer-pill 3s ease-in-out infinite;
}

.platform-pill.primary-pill {
    background: #F5F3FF;
    border: 1px solid #EDE9FE;
    color: #7C3AED;
    font-size: 13px;
    font-weight: 600;
}

.platform-pill.light-pill {
    background: #fff;
    border: 1px solid #E5E7EB;
    color: #374151;
    font-size: 12px;
    font-weight: 500;
}

.platform-round-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.platform-round-icon svg {
    width: 14px;
    height: 14px;
    fill: #fff;
    display: block;
}

.facebook-icon {
    background: #1877F2;
}

.instagram-icon {
    background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.tiktok-icon {
    background: #000;
}

.linkedin-icon {
    background: #0A66C2;
}

.x-icon {
    background: #000;
}

.pinterest-icon {
    background: #E60023;
}

.youtube-icon {
    background: #FF0000;
}

.threads-icon {
    background: #000;
}

.google-icon {
    background: conic-gradient(#4285F4, #34A853, #FBBC05, #EA4335, #4285F4);
}


/* =========================
   GLOBAL HELPERS
   ========================= */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.w-full {
    width: 100%;
}

.animate-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 0.6s ease-out forwards;
}

.animate-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: fade-in-right 0.8s ease-out forwards;
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.text-blue-500 {
    color: #3b82f6;
}

.text-red-500 {
    color: #ef4444;
}

.text-slate-400 {
    color: #94a3b8;
}

.text-slate-900 {
    color: #0f172a;
}

.text-green-600 {
    color: #16a34a;
}

.text-blue-600 {
    color: #2563eb;
}

.text-purple-600 {
    color: #9333ea;
}

.bg-green-soft {
    background: #dcfce7;
}

.bg-blue-soft {
    background: #dbeafe;
}

.bg-purple-soft {
    background: #f3e8ff;
}

.gradient-text-hero-content,
.gradient-text-hero-time,
.gradient-text-purple,
.indzu-gradient-text {
    background: linear-gradient(90deg, #7c3aed, #db2777, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (min-width: 992px) {
    .social-home-img-border {
        /* padding: 90px 0; */
        padding: 20px 0px 90px 0px;
        border-bottom: 1px solid #E5E7EB;
    }
}


/* =========================
   LAYOUT CONTAINERS
   ========================= */
.ilb-section,
.hero-section,
.ai-tools-section,
.cta-main-section {
    position: relative;
    overflow: hidden;
}

.ilb-max,
.hero-container,
.ai-container,
.cta-container,
.nav-container {
    max-width: var(--max-w-7xl);
    margin: 0 auto;
    width: 100%;
}

.ilb-max,
.hero-container,
.ai-container,
.cta-container {
    padding-left: 24px;
    padding-right: 24px;
}

.ilb-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.ilb-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 64px;
    align-items: center;
}

.ilb-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ilb-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}

@media (max-width: 768px) {
    .ilb-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .ilb-grid-3 {
        grid-template-columns: 1fr;
    }
}

.section-title,
.header-title,
.video-title,
.cta-title,
.blog-section h2,
.ai-content h2,
.showcase-content h2,
.platforms-section h2,
.faq-section h2 {
    color: #0f0f1a;
    font-weight: 800;
    line-height: 1.15;
}

/* =========================
   BUTTONS
   ========================= */
.btn,
.btn-primary,
.btn-outline,
.btn-white,
.btn-feature {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn {
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    font-size: 16px;
    font-weight: 600;
}

.btn-ghost {
    background: transparent;
    color: var(--text-gray-700);
    font-weight: 500;
}

.btn-ghost:hover {
    background: #f3f4f6;
}

.btn-primary {
    background: #7c3aed;
    color: #fff;
    font-weight: 700;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
    padding: 14px 28px;
}

.btn-primary:hover {
    background: #6d28d9;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.45);
}

.btn-outline {
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    border: 2px solid #7c3aed;
    background: transparent;
    color: #7c3aed;
    font-weight: 700;
}

.btn-outline:hover,
.btn-white:hover,
.btn-feature:hover {
    transform: translateY(-2px);
}

.btn-white {
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    background: #fff;
    color: #7c3aed;
    font-weight: 700;
}

/* =========================
   NAVBAR
   ========================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: var(--bg-white-80);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-gray-200);
    height: 64px;
    display: flex;
    align-items: center;
    animation: slideDown 0.6s ease-out forwards;
}

@media (min-width: 640px) {
    .navbar {
        height: 70px;
    }
}

.nav-container {
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 640px) {
    .nav-container {
        padding: 0 24px;
    }
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 0 32px;
    }
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.logo-section:hover {
    transform: scale(1.05);
}

.logo-section:active {
    transform: scale(0.95);
}

.logo-icon-box {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon {
    width: 24px;
    height: 24px;
    color: white;
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

.desktop-nav {
    list-style: none;
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    color: var(--text-gray-700);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
    cursor: pointer;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.nav-link:hover {
    color: var(--purple-600);
}

.nav-actions {
    display: none;
    align-items: center;
    gap: 16px;
}

@media (min-width: 768px) {
    .nav-actions {
        display: flex;
    }
}

.mobile-toggle {
    display: block;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--text-gray-700);
}

.mobile-toggle i {
    width: 24px;
    height: 24px;
}

@media (min-width: 768px) {
    .mobile-toggle {
        display: none;
    }
}

.mobile-menu {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    display: none;
    overflow: hidden;
}

@media (min-width: 640px) {
    .mobile-menu {
        top: 80px;
    }
}

.mobile-menu.active {
    display: block;
    animation: mobileMenuFadeIn 0.3s ease-out forwards;
}

.mobile-menu-inner {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-top: 1px solid #e5e7eb;
}

.mobile-link {
    color: var(--text-gray-700);
    font-weight: 500;
    font-size: 18px;
}

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

/* =========================
   HERO SECTION
   ========================= */
.hero-section {
    background: #ffffff;
    padding-top: 20px;
    padding-bottom: 10px;
}

.gradient-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(64px);
}

.blue-orb {
    top: -160px;
    right: -160px;
    background: rgba(59, 130, 246, 0.1);
}

.purple-orb {
    top: 50%;
    left: -160px;
    background: rgba(168, 85, 247, 0.1);
}

.hero-container {
    position: relative;
    z-index: 20;
}

.top-announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(to right, #2563eb, #9333ea);
    padding: 8px 16px;
    border-radius: 9999px;
    color: white;
    font-size: 13px;
    font-weight: 700;
    /* margin: 108px auto 16px; */
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
    z-index: 30;
}

.hero-top-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 20;
}

.hero-headline {
    font-size: 48px;
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.hero-subheadline {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 500px;
    font-weight: 400;
}

.live-social-proof-new {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 26px;
}

.live-dot-green {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}

.live-dot-green::after {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    border-radius: inherit;
    animation: live-pulse-anim-new 2s infinite;
}

.live-badge-text-small {
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
}

/* =========================
   FLOATING ICONS
   ========================= */
.floating-icons {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 10;
}

.float-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    color: white;
}

.float-icon {
    position: absolute;
}

.instagram-float {
    top: 110px;
    left: 6%;
    opacity: 0.9;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f43f5e, #c026d3, #9333ea);
    box-shadow: 0 8px 24px rgba(244, 63, 94, 0.35);
    animation: float-insta 4s ease-in-out infinite;
}

.instagram-float i {
    width: 34px;
    height: 34px;
}

.facebook-float {
    top: 80px;
    right: 14%;
    opacity: 0.9;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: #1877f2;
    box-shadow: 0 8px 24px rgba(24, 119, 242, 0.35);
    animation: float-fb 5s ease-in-out infinite 0.5s;
}

.facebook-float i {
    width: 30px;
    height: 30px;
}

.linkedin-float {
    top: 42%;
    left: 4%;
    opacity: 0.9;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #0a66c2;
    box-shadow: 0 8px 24px rgba(10, 102, 194, 0.35);
    animation: float-linkedin 6s ease-in-out infinite 1s;
}

.youtube-float {
    top: 26%;
    right: 7%;
    opacity: 0.9;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: #ff0000;
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.3);
    animation: float-yt 4.5s ease-in-out infinite 1.5s;
}

.twitter-float {
    bottom: 32%;
    left: 10%;
    opacity: 0.9;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: #1a1a2e;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    animation: float-twitter 5.5s ease-in-out infinite 2s;
}

.tiktok-float {
    top: 52%;
    right: 4%;
    opacity: 0.9;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, #14b8a6, #6366f1);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
    animation: float-tiktok 5s ease-in-out infinite 2.5s;
}

.heart-icon {
    top: 20%;
    left: 25%;
    opacity: 0.5;
    color: #ef4444;
    fill: #ef4444;
    width: 40px;
    height: 40px;
    animation: heart-pulse 3s ease-in-out infinite 0.3s;
}

.sparkles-top {
    top: 15%;
    right: 25%;
    opacity: 0.6;
    color: #eab308;
    fill: #eab308;
    width: 32px;
    height: 32px;
    animation: sparkle-rotate 8s linear infinite;
}

.thumbs-up-icon {
    top: 38%;
    left: 18%;
    opacity: 0.5;
    color: #3b82f6;
    fill: #3b82f6;
    width: 36px;
    height: 36px;
    animation: thumbs-float 4s ease-in-out infinite 1.2s;
}

.star-icon {
    bottom: 40%;
    right: 20%;
    opacity: 0.55;
    color: #fbbf24;
    fill: #fbbf24;
    width: 40px;
    height: 40px;
    animation: star-rotate 10s linear infinite;
}

.message-icon {
    bottom: 25%;
    left: 8%;
    opacity: 0.5;
    color: #22c55e;
    width: 44px;
    height: 44px;
    animation: message-float 4.5s ease-in-out infinite 1.8s;
}

.send-icon {
    top: 60%;
    left: 15%;
    opacity: 0.45;
    color: #a855f7;
    fill: #a855f7;
    width: 32px;
    height: 32px;
    animation: float-insta 3.5s ease-in-out infinite 0.8s;
}

.zap-icon {
    top: 48%;
    right: 12%;
    opacity: 0.6;
    color: #eab308;
    fill: #eab308;
    width: 40px;
    height: 40px;
    animation: zap-scale 3s ease-in-out infinite 2.2s;
}

.hash-icon {
    bottom: 45%;
    right: 28%;
    opacity: 0.5;
    color: #6366f1;
    width: 36px;
    height: 36px;
    animation: float-fb 5s ease-in-out infinite 0.6s;
}

.at-sign-icon {
    top: 65%;
    left: 22%;
    opacity: 0.45;
    color: #14b8a6;
    width: 32px;
    height: 32px;
    animation: message-float 4.2s ease-in-out infinite 1.5s;
}

.image-icon {
    top: 72%;
    right: 18%;
    opacity: 0.5;
    color: #ec4899;
    width: 40px;
    height: 40px;
    animation: float-insta 5.5s ease-in-out infinite 2.8s;
}

.sparkles-s1 {
    top: 25%;
    left: 35%;
    color: #60a5fa;
    fill: #60a5fa;
    width: 24px;
    height: 24px;
    animation: sparkles-s1-anim 2s infinite 0.5s;
}

.sparkles-s2 {
    bottom: 30%;
    right: 35%;
    color: #c084fc;
    fill: #c084fc;
    width: 20px;
    height: 20px;
    animation: sparkles-s1-anim 2.5s infinite 1.5s;
}

/* =========================
   HERO DECORATIVES
   ========================= */
.hero-decoratives {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.deco-elem {
    position: absolute;
    font-size: 28px;
    line-height: 1;
    user-select: none;
}

.deco-star {
    color: #f59e0b;
    top: 55%;
    right: 22%;
    font-size: 36px;
    animation: star-rotate 8s linear infinite;
}

.deco-lightning {
    color: #f59e0b;
    top: 42%;
    right: 10%;
    font-size: 32px;
    animation: zap-scale 3s ease-in-out infinite 1s;
}

.deco-plus {
    color: #ec4899;
    top: 22%;
    left: 30%;
    font-size: 40px;
    font-weight: 900;
    animation: heart-pulse 4s ease-in-out infinite 0.5s;
}

.deco-at {
    color: #14b8a6;
    bottom: 38%;
    left: 20%;
    font-size: 34px;
    font-weight: 700;
    animation: message-float 5s ease-in-out infinite 1.2s;
}

.deco-bubble {
    bottom: 28%;
    left: 7%;
    font-size: 36px;
    animation: float-fb 5s ease-in-out infinite 0.8s;
}

.deco-image {
    bottom: 30%;
    right: 18%;
    font-size: 34px;
    animation: float-insta 6s ease-in-out infinite 2s;
}

/* =========================
   HERO CAROUSEL
   ========================= */
.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.carousel-3d-container {
    position: relative;
    width: 100%;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    overflow: visible;
}

.post-3d-card {
    position: absolute;
    width: 210px;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transform-origin: bottom center;
    max-width: 100%;
}

.post-3d-card.center {
    z-index: 10;
    transform: rotate(0deg) translateY(0) scale(1);
    opacity: 1;
    box-shadow: 0 25px 90px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(139, 92, 246, 0.2);
    border: 4px solid #c4b5fd;
}

.post-3d-card.side.left {
    z-index: 5;
    transform: rotate(-18deg) translateX(-52%) translateY(8%) scale(0.78);
    opacity: 0.75;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    filter: brightness(0.92);
}

.post-3d-card.side.right {
    z-index: 5;
    transform: rotate(18deg) translateX(52%) translateY(8%) scale(0.78);
    opacity: 0.75;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    filter: brightness(0.92);
}

.post-type-top-pill {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 14px;
    border-radius: 8px;
    color: white;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 20;
    white-space: nowrap;
}

.post-card-header {
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background: white;
}

.post-user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
}

.post-user-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-user-name {
    font-size: 11px;
    font-weight: 800;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80px;
}

.post-user-time {
    font-size: 9px;
    color: #94a3b8;
}

.post-platform-badge i {
    width: 18px;
    height: 18px;
    color: #64748b;
}

.post-card-body {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f1f5f9;
    flex-shrink: 0;
}

.post-card-body img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-ai-pill {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    padding: 4px 10px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    color: #1e293b;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.post-ai-pill i {
    width: 12px;
    height: 12px;
    color: #6366f1;
}

.post-center-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.post-center-play-btn i {
    width: 20px;
    height: 20px;
    fill: currentColor;
    margin-left: 2px;
}

.post-card-caption {
    padding: 10px 10px 6px;
    font-size: 12px;
    line-height: 1.4;
    color: #1e293b;
    font-weight: 600;
}

.post-watermark-bottom {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    color: white;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 700;
}

.post-card-footer {
    padding: 7px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background: white;
}

.post-card-footer .footer-left {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #1e293b;
}

.post-card-footer .footer-left i {
    width: 14px;
    height: 14px;
    color: #64748b;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    color: #1e293b;
    z-index: 30;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-nav-btn:hover {
    background: #f8fafc;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav-btn.prev {
    left: -60px;
}

.carousel-nav-btn.next {
    right: -60px;
}

.carousel-nav-btn i {
    width: 20px;
    height: 20px;
}

.carousel-nav-pill-wrapper {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.nav-dots-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot-item {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2e8f0;
    transition: all 0.3s;
}

.dot-item.active-pill {
    width: 32px;
    height: 10px;
    border-radius: 9999px;
    background: linear-gradient(to right, #6366f1, #a855f7);
}

.hero-carousel-cta-btn {
    margin: 12px auto 0;
    background: linear-gradient(to right, #4f46e5, #9333ea);
    color: white;
    padding: 8px 20px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 6px 14px rgba(79, 70, 229, 0.25);
    cursor: pointer;
    transition: transform 0.3s;
    text-align: center;
    max-width: fit-content;
}

.hero-carousel-cta-btn:hover {
    transform: scale(1.05);
}

/* =========================
   HERO CONVERSION HUB
   ========================= */
.hero-bottom-cta {
    margin-top: 16px;
    width: 100%;
}

.hub-main-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.6);
    text-align: center;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.hub-corner-badge {
    position: absolute;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.hub-corner-tl {
    top: -16px;
    left: -16px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.hub-corner-br {
    right: -16px;
    bottom: -16px;
    background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.hub-claim-badge-new {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #7c3aed, #9333ea);
    color: white;
    padding: 6px 18px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.3);
    display: flex;
    align-items: center;
    gap: 5px;
}

.hub-title-new {
    font-size: 16px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 24px;
    margin-top: 12px;
}

.hub-input-group-new {
    display: flex;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    flex-direction: column;
    gap: 12px;
    background: #f1f5f9;
    padding: 8px;
    border-radius: 20px;
    max-width: 750px;
    margin: 0 auto;
}

.hub-input-box-new {
    flex: 1;
    display: flex;
    align-items: center;
    padding-left: 20px;
    position: relative;
}

.hub-main-input-new {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    padding-right: 40px;
}

.globe-icon-new {
    width: 18px;
    height: 18px;
    color: #94a3b8;
    position: absolute;
    right: 15px;
}

.hub-submit-btn-new {
    background: linear-gradient(to right, #7c3aed, #db2777);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 9999px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.hub-submit-btn-new:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 28px rgba(124, 58, 237, 0.45);
}

.hub-alt-link-new {
    margin: 20px 0 32px;
}

.hub-alt-link-new a,
.link-continue {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.hub-trust-indicators-new {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid #f1f5f9;
}

.trust-item-new {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
}

.trust-icon-circle-new {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon-circle-new i {
    width: 14px;
    height: 14px;
}

/* =========================
   HERO STATS
   ========================= */
.hero-stats-row {
    padding: 24px 24px 0;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
    max-width: 48rem;
    margin: 0 auto;
}

.hero-stat-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 231, 235, 0.7);
    border-radius: 20px;
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.hero-stat-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 4px;
}

.hero-stat-icon-box i {
    width: 22px;
    height: 22px;
}

.hero-stat-value {
    display: block;
    font-size: 26px;
    font-weight: 900;
    color: #111827;
    line-height: 1;
}

.hero-stat-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 6px;
}

/* =========================
   PLATFORM DIVIDER / SHOWCASE
   ========================= */
.platform-divider-section {
    background: #fff;
    padding: 72px 0 32px;
}

.platform-divider-top,
.platform-divider-main {
    margin: 0 0 12px;
    color: #0f0f1a;
    font-weight: 800;
    text-align: center;
}

.platform-divider-main {
    font-size: clamp(28px, 4vw, 42px);
}

.divider-pill-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 28px 0 44px;
}

.divider-pill-row span {
    width: 40px;
    height: 4px;
    border-radius: 999px;
    background: #e5e7eb;
}

.divider-pill-row .active-line {
    width: 64px;
    background: var(--primary);
}

.marquee-outer {
    overflow: hidden;
}

.marquee-inner {
    display: flex;
    gap: 12px;
    width: max-content;
}

.platform-showcase-section {
    background: #fff;
    padding: 96px 24px;
}

.showcase-row {
    padding: 64px 0;
    border-bottom: 1px solid #e5e7eb;
}

.showcase-row:last-child {
    border-bottom: none;
}

.showcase-row h2 {
    font-size: clamp(24px, 2.8vw, 38px);
    color: #0f0f1a;
    line-height: 1.2;
    margin-bottom: 18px;
}

.showcase-row p {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 32px;
}

.showcase-image-box img {
    width: 100%;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}

.showcase-img-col {
    order: 0;
}

/* =========================
   AI TOOLS SECTION
   ========================= */
.ai-tools-section {
    background: linear-gradient(135deg, #f5f3ff, #faf5ff, #fdf4ff);
    padding: 80px 16px;
}

.ai-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(168, 85, 247, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.5) 1px, transparent 1px);
    background-size: 40px 40px;
}

.ai-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.ai-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(64px);
    opacity: 0.4;
}

.ai-orb-tl {
    top: 5%;
    left: 5%;
    width: 320px;
    height: 320px;
    background: #d8b4fe;
    animation: ai-orb-float-tl 9s ease-in-out infinite;
}

.ai-orb-br {
    bottom: 5%;
    right: 5%;
    width: 384px;
    height: 384px;
    background: #f5d0fe;
    animation: ai-orb-float-br 11s ease-in-out infinite;
}

.ai-container {
    position: relative;
    z-index: 2;
}

.ai-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.ai-image-container {
    position: relative;
}

.ai-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #60a5fa, #a855f7);
    border-radius: 24px;
    filter: blur(48px);
    opacity: 0.2;
}

.ai-image-wrapper {
    position: relative;
    transition: all 0.3s ease;
}

.ai-image-wrapper:hover {
    transform: scale(1.02) rotate(-1deg);
}

.ai-main-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: block;
}

.ai-platforms-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: white;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid #bfdbfe;
    z-index: 10;
}

.platforms-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #4b5563;
    margin-bottom: 12px;
}

.platforms-flex {
    display: flex;
    gap: 8px;
}

.p-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* =========================
   SECTION HEADERS
   ========================= */
.section-header-main,
.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.header-title,
.section-header h2 {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #111827;
}

.header-subtitle,
.section-header p {
    font-size: 17px;
    color: #4b5563;
    max-width: 768px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =========================
   TOOL / PLATFORM / BLOG CARDS
   ========================= */
.tool-card,
.platform-card,
.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.06);
    transition: 0.25s ease;
}

.tool-card:hover,
.platform-card:hover,
.blog-card:hover {
    transform: translateY(-4px);
}

.tool-card img,
.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.tool-card-content,
.blog-card-content,
.platform-card-content {
    padding: 20px;
}

.tool-tag {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

/* =========================
   PLATFORMS SECTION
   ========================= */
.platforms-section {
    background: #fff;
    padding: 96px 24px;
}

.platform-card {
    text-align: center;
    padding: 28px 18px;
}

.platform-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f3ff;
    color: var(--primary);
    font-size: 24px;
}

.platform-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-gray-900);
}

.platform-desc {
    font-size: 12px;
    color: #4b5563;
    line-height: 1.4;
}

/* =========================
   PLATFORM BRAND BACKGROUNDS
   ========================= */
.bg-instagram {
    background: linear-gradient(to bottom right, #ec4899, #f43f5e);
}

.bg-facebook {
    background: linear-gradient(to bottom right, #2563eb, #1d4ed8);
}

.bg-x {
    background: linear-gradient(to bottom right, #000000, #1f2937);
}

.bg-linkedin {
    background: linear-gradient(to bottom right, #2563eb, #1d4ed8);
}

.bg-youtube {
    background: linear-gradient(to bottom right, #dc2626, #b91c1c);
}

.bg-pinterest {
    background: linear-gradient(to bottom right, #ef4444, #dc2626);
}

.bg-tiktok {
    background: linear-gradient(to bottom right, #1f2937, #111827);
}

.bg-gmb {
    background: linear-gradient(to bottom right, #22c55e, #059669);
}

.bg-threads {
    background: linear-gradient(to bottom right, #9333ea, #ec4899);
}

/* =========================
   BLOG SECTION
   ========================= */
.blog-section {
    background: #f9fafb;
    padding: 96px 24px;
}

.blog-header-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.blog-header-row h2 {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    margin: 0 0 16px;
    color: var(--dark);
    font-weight: 800;
}

/* =========================
   FAQ SECTION
   ========================= */
.faq-section {
    background: #fff;
    padding: 96px 24px;
}

.faq-wrap {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    border-top: 1px solid var(--border);
}

.faq-item:last-child {
    border-bottom: 1px solid var(--border);
}

.faq-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 0;
    background: transparent;
    border: 0;
    text-align: left;
    cursor: pointer;
}

.faq-btn-text,
.faq-question {
    flex: 1;
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
}

.faq-question {
    padding-right: 24px;
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f5f3ff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon-box {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.faq-icon-box i {
    width: 18px;
    height: 18px;
    color: #94a3b8;
}

.faq-item.active .faq-icon,
.faq-item.faq-open .faq-icon-box {
    background: var(--primary);
    color: #fff;
}

.faq-item.faq-open .faq-icon-box i {
    color: white;
}

.faq-body,
.faq-ilb-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
    color: #6b7280;
    line-height: 1.7;
}

.faq-body.open,
.faq-ilb-body.open,
.faq-item.active .faq-body {
    max-height: 300px;
}

.faq-answer-container {
    max-height: 0;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.faq-open .faq-answer-container {
    max-height: 500px;
    opacity: 1;
}

.faq-answer {
    padding: 0 32px 32px;
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
    font-weight: 500;
}

/* =========================
   CTA SECTION
   ========================= */
.cta-main-section {
    background: linear-gradient(to bottom right, #4f46e5, #9333ea, #db2777);
    padding: 60px 24px;
}

.cta-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(64px);
    opacity: 0.3;
}

.cta-orb-indigo {
    top: 50%;
    left: 25%;
    width: 384px;
    height: 384px;
    background-color: #818cf8;
    transform: translateY(-50%);
    animation: cta-orb-indigo-anim 8s ease-in-out infinite;
}

.cta-orb-pink {
    bottom: 25%;
    right: 25%;
    width: 320px;
    height: 320px;
    background-color: #f472b6;
    animation: cta-orb-pink-anim 10s ease-in-out infinite;
}

.cta-orb-purple {
    top: 25%;
    right: 33%;
    width: 288px;
    height: 288px;
    background-color: #c084fc;
    animation: cta-orb-purple-anim 9s ease-in-out infinite;
}

.cta-container {
    z-index: 2;
}

.cta-main-card {
    background: linear-gradient(to bottom right, rgba(168, 85, 247, 0.4), rgba(59, 130, 246, 0.4));
    backdrop-filter: blur(8px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.cta-main-section h2 {
    color: #fff;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
    margin-bottom: 24px;
}

.cta-main-card img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .35);
}

/* =========================
   MISC / SHARED COMPONENTS
   ========================= */
.ping-dot-wrap {
    position: relative;
    display: inline-block;
}

.ping-dot-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    opacity: .35;
    animation: ping-ring 1.8s ease-out infinite;
}

.float-badge {
    position: absolute;
    border-radius: 999px;
    padding: 7px 14px;
    box-shadow: 0 4px 20px rgba(124, 58, 237, .14);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    animation: float-bob 3.2s ease-in-out infinite, badge-in .6s ease forwards;
}

.spiral-arrow {
    display: inline-block;
}

/* =========================
   RESPONSIVE — LARGE SCREENS
   ========================= */
@media (min-width: 1440px) {
    :root {
        --max-w-7xl: 1400px;
    }

    .hero-headline {
        font-size: 64px;
    }

    .carousel-3d-container {
        height: 460px !important;
    }

    .post-3d-card {
        width: 300px !important;
    }

    .hub-main-card {
        max-width: 1000px;
    }
}

/* =========================
   RESPONSIVE — DESKTOP
   ========================= */
@media (min-width: 1024px) {
    .hero-top-grid {
        grid-template-columns: repeat(12, 1fr);
        gap: 48px;
    }

    .hero-left {
        grid-column: span 5;
    }

    .hero-right {
        grid-column: span 7;
        display: flex;
        flex-direction: column;
        align-items: center;
        perspective: 2000px;
    }

    .hero-headline {
        font-size: 52px;
    }

    .post-3d-card {
        width: 190px;
    }

    .hero-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .ai-tools-section {
        padding: 120px 32px;
    }

    .ai-main-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 80px;
    }

    .cta-main-section {
        padding: 80px 32px;
    }

    .header-title,
    .section-header h2 {
        font-size: 48px;
    }
}

/* =========================
   RESPONSIVE — TABLET LANDSCAPE
   ========================= */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-top-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 24px !important;
    }

    .hero-left,
    .hero-right {
        grid-column: span 1 !important;
    }

    .hero-headline {
        font-size: 38px;
    }

    .carousel-3d-container {
        height: 360px !important;
    }

    .post-3d-card {
        width: 220px !important;
    }

    .ai-main-grid {
        grid-template-columns: 1fr !important;
    }

    .platforms-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .tiktok-float,
    .youtube-float {
        display: none;
    }
}

/* =========================
   RESPONSIVE — TABLET
   ========================= */
@media (max-width: 1024px) {
    .hero-section {
        padding-top: 70px;
        padding-bottom: 40px;
    }

    .hero-headline {
        font-size: 44px;
    }

    /*.top-announcement-badge { margin: 120px auto 24px; font-size: 11px; }*/
    .carousel-3d-container {
        height: 420px !important;
        overflow: visible;
    }

    .post-3d-card {
        width: 240px !important;
    }

    .ai-platforms-card {
        right: -12px;
        bottom: -12px;
    }

    .post-3d-card.side.left {
        transform: rotate(-12deg) translateX(-48%) translateY(10%);
    }

    .post-3d-card.side.right {
        transform: rotate(12deg) translateX(48%) translateY(10%);
    }

    .carousel-nav-btn.prev {
        left: 10px;
    }

    .carousel-nav-btn.next {
        right: 10px;
    }

    .linkedin-float,
    .twitter-float,
    .send-icon,
    .at-sign-icon,
    .hash-icon,
    .sparkles-s1,
    .sparkles-s2 {
        display: none;
    }
}

@media (min-width: 640px) {
    .hub-input-group-new {
        flex-direction: row;
        border-radius: 9999px;
    }

    .ai-tools-section {
        padding: 80px 24px;
    }

    .cta-main-section {
        padding: 40px 24px;
    }

    .header-title,
    .section-header h2 {
        font-size: 38px;
    }
}

/* =========================
   RESPONSIVE — MOBILE LANDSCAPE
   ========================= */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 60px;
        padding-bottom: 30px;
    }

    .hero-headline {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .hero-subheadline {
        font-size: 15px;
    }

    .hero-container {
        padding: 0 16px;
    }

    .hero-top-grid {
        gap: 24px !important;
        margin-bottom: 16px !important;
    }

    .top-announcement-badge {
        /*margin: 115px auto 20px;*/
        margin: 0px auto 20px;
        font-size: 11px;
        padding: 6px 12px;
        max-width: 90%;
        text-align: center;
        white-space: normal;
    }

    .floating-icons,
    .hero-decoratives {
        display: none;
    }

    .carousel-3d-container {
        height: 400px !important;
        overflow: visible;
    }

    .post-3d-card {
        width: 220px !important;
    }

    .post-3d-card.side.left {
        transform: rotate(-10deg) translateX(-42%) translateY(12%);
        opacity: 0.7;
    }

    .post-3d-card.side.right {
        transform: rotate(10deg) translateX(42%) translateY(12%);
        opacity: 0.7;
    }

    .carousel-nav-btn.prev {
        left: 5px;
    }

    .carousel-nav-btn.next {
        right: 5px;
    }

    .hero-carousel-cta-btn {
        font-size: 13px;
        padding: 10px 20px;
        margin-top: 20px;
        text-align: center;
    }

    .hub-main-card {
        padding: 28px 20px;
        border-radius: 24px;
    }

    .hub-claim-badge-new {
        font-size: 11px;
        padding: 7px 18px;
        top: -15px;
    }

    .hub-title-new {
        font-size: 14px;
        margin-top: 16px;
    }

    .hub-input-group-new {
        border-radius: 16px;
        padding: 8px;
        max-width: 100%;
    }

    .hub-submit-btn-new {
        padding: 14px 20px;
        font-size: 14px;
        justify-content: center;
        width: 100%;
    }

    .hub-trust-indicators-new {
        gap: 20px;
        padding-top: 20px;
    }

    .trust-item-new {
        font-size: 12px;
        gap: 8px;
    }

    .ai-tools-section {
        padding: 60px 16px;
    }

    .ai-platforms-card {
        right: 0;
        bottom: -16px;
        padding: 12px;
    }

    .platforms-flex {
        gap: 6px;
    }

    .p-icon {
        width: 30px;
        height: 30px;
    }

    .hero-top-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .hero-left,
    .hero-right {
        grid-column: span 1 !important;
    }

    .ai-main-grid {
        grid-template-columns: 1fr !important;
    }

    .platforms-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .blog-grid {
        grid-template-columns: 1fr !important;
    }

    .ai-features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
}

/* =========================
   RESPONSIVE — MOBILE
   ========================= */
@media (max-width: 640px) {
    body {
        font-size: 14px;
    }

    .hero-headline {
        font-size: 30px;
        line-height: 1.15;
    }

    .hero-subheadline {
        font-size: 14px;
    }

    .live-badge-text-small {
        font-size: 12px;
    }

    .carousel-3d-container {
        height: 360px !important;
        overflow: visible;
    }

    .post-3d-card {
        width: 200px !important;
    }

    .post-3d-card.side.left {
        transform: rotate(-8deg) translateX(-38%) translateY(14%);
        opacity: 0.6;
    }

    .post-3d-card.side.right {
        transform: rotate(8deg) translateX(38%) translateY(14%);
        opacity: 0.6;
    }

    .hero-carousel-cta-btn {
        font-size: 12px;
        padding: 8px 16px;
    }

    .hub-main-card {
        padding: 24px 16px;
        border-radius: 20px;
    }

    .hub-claim-badge-new {
        font-size: 10px;
        padding: 6px 14px;
        top: -14px;
        max-width: 90%;
    }

    .hub-title-new {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .hub-main-input-new {
        font-size: 14px;
    }

    .hub-trust-indicators-new {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .platforms-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
    }

    .showcase-img-col {
        order: -1 !important;
    }

    .platform-showcase-section,
    .platforms-section,
    .blog-section,
    .faq-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }
}

/* =========================
   RESPONSIVE — MOBILE SMALL
   ========================= */
@media (max-width: 480px) {
    .hero-headline {
        font-size: 26px;
    }

    .top-announcement-badge {
        font-size: 10px;
        padding: 5px 10px;
    }

    .carousel-3d-container {
        height: 260px !important;
    }

    .post-3d-card {
        width: 180px !important;
    }

    .post-3d-card.side {
        display: none;
    }

    .carousel-nav-btn.prev {
        left: -5px;
        width: 36px;
        height: 36px;
    }

    .carousel-nav-btn.next {
        right: -5px;
        width: 36px;
        height: 36px;
    }

    .carousel-nav-btn i {
        width: 16px;
        height: 16px;
    }

    .hub-main-card {
        padding: 20px 14px;
    }

    .hub-claim-badge-new {
        font-size: 9px;
        padding: 5px 12px;
        top: -12px;
    }

    .platforms-grid {
        grid-template-columns: 1fr !important;
    }
}

/* =========================
   RESPONSIVE — MOBILE XS
   ========================= */
@media (max-width: 380px) {
    .hero-headline {
        font-size: 23px;
    }

    .hub-claim-badge-new {
        font-size: 8px;
        padding: 5px 10px;
    }

    .hub-submit-btn-new {
        font-size: 13px;
        padding: 12px 16px;
    }

    .trust-item-new {
        font-size: 11px;
    }
}

/* =========================
   PRINT
   ========================= */
@media print {

    .floating-icons,
    .hero-decoratives,
    .gradient-orbs,
    .ai-orbs,
    .cta-orbs {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    .hero-section {
        padding-top: 20px;
    }
}







/*Banner Form CSS */
.website-form {
    max-width: 620px;
}

.input-section {
    display: flex;
    align-items: center;
    width: 100%;
    background: #ffffff;
    border-radius: 60px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.form-control-custom {
    flex: 1;
    height: 70px;
    border: none;
    outline: none;
    padding: 0 30px;
    font-size: 18px;
    font-weight: 500;
    color: #4b5563;
    background: #ffffff;
}

.form-control-custom::placeholder {
    color: #5f6368;
}

.btn-get-posts {
    height: 70px;
    min-width: 210px;
    border: none;
    outline: none;
    background: #5b49f4;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 0 60px 60px 0;
    transition: all 0.25s ease;
}

.btn-get-posts:hover {
    background: #4938df;
}

@media(max-width: 768px) {
    .website-form {
        width: 90% !important;
        max-width: 100%;
    }

    .input-section {
        flex-direction: column;
        border-radius: 24px;
    }

    .form-control-custom {
        width: 100%;
        height: 58px;
        font-size: 16px;
        text-align: center;
    }

    .btn-get-posts {
        width: 100%;
        min-width: 100%;
        height: 58px;
        font-size: 16px;
        border-radius: 0 0 24px 24px;
    }
}





@media (min-width: 320px) and (max-width: 400px) {

    .hub-main-input-new {
        font-size: 10px;
        width: 100%;
    }

    #btnContent {
        font-size: 11px;
    }
}


/* ========================================================
   SOCIAL HOME NEW INDEX SECTIONS — CLEAN APPEND ONLY
   This block styles only the new sections added to page-social.php.
   Existing social.css rules above are not changed.
   ======================================================== */

/* ---------- Shared wrapper and utilities for new sections ---------- */
.indzu-social-redesign {
    --isr-bg: #F7F5FB;
    --isr-surface: #FFFFFF;
    --isr-surface-2: #F2EFF8;
    --isr-ink: #15131C;
    --isr-ink-2: #5C5868;
    --isr-ink-3: #908B9F;
    --isr-hairline: #ECE7F4;
    --isr-primary: #7B3FF2;
    --isr-primary-deep: #5B1FCC;
    --isr-primary-soft: #F0E9FE;
    --isr-coral: #fa3a24;
    --isr-mint: #34D399;
    --isr-orange: #F59E0B;
    --isr-rose: #F472B6;
    --isr-blue: #3B82F6;
    --isr-radius: 16px;
    --isr-radius-lg: 28px;
    --isr-shadow-card: 0 1px 2px rgba(21, 19, 28, 0.04), 0 8px 32px rgba(21, 19, 28, 0.06);
    --isr-shadow-hover: 0 4px 12px rgba(123, 63, 242, 0.10), 0 24px 48px rgba(21, 19, 28, 0.10);
    background: var(--isr-bg);
    color: var(--isr-ink);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    position: relative;
    overflow: hidden;
}

.indzu-social-redesign *,
.indzu-social-redesign *::before,
.indzu-social-redesign *::after {
    box-sizing: border-box;
}

.indzu-social-redesign::before,
.indzu-social-redesign::after {
    content: "✦";
    position: absolute;
    color: var(--isr-primary);
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
    font-size: 14px;
}

.indzu-social-redesign::before {
    top: 5%;
    left: 3%;
}

.indzu-social-redesign::after {
    top: 52%;
    right: 4%;
    font-size: 10px;
}

.indzu-social-redesign a {
    text-decoration: none;
}

.isr-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.isr-section {
    padding: 100px 0;
    position: relative;
}

.isr-section+.isr-section {
    padding-top: 0;
}

.isr-section-compact {
    padding: 40px 0 100px;
}

.isr-final-section {
    padding: 40px 0 100px;
}

.isr-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--isr-primary);
}

.isr-heading {
    font-size: clamp(34px, 4.2vw, 52px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--isr-ink);
    margin: 0;
}

.isr-heading span {
    color: var(--isr-primary);
}

.isr-lead {
    font-size: 17px;
    line-height: 1.6;
    color: var(--isr-ink-2);
    max-width: 760px;
    margin: 0;
}

.isr-sec-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 64px;
    align-items: flex-start;
}

.isr-sec-header.isr-center {
    align-items: center;
    text-align: center;
}

.isr-sec-header.isr-center .isr-lead {
    margin: 0 auto;
}

.isr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.isr-btn:hover {
    transform: translateY(-1px);
}

.isr-btn-primary {
    background: var(--isr-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(123, 63, 242, 0.30);
}

.isr-btn-primary:hover {
    background: var(--isr-primary-deep);
    color: #fff;
    box-shadow: 0 8px 24px rgba(123, 63, 242, 0.40);
}

.isr-btn-ghost {
    background: transparent;
    color: var(--isr-ink);
    border-color: var(--isr-hairline);
}

.isr-btn-ghost:hover {
    background: var(--isr-surface);
    border-color: var(--isr-primary);
    color: var(--isr-primary);
}

.isr-btn-arrow::after {
    content: "→";
    transition: transform .15s ease;
}

.isr-btn-arrow:hover::after {
    transform: translateX(3px);
}

.isr-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
}

.isr-tag-popular {
    background: #EDE3FD;
    color: var(--isr-primary-deep);
}

.isr-tag-b2b {
    background: #DDEBFE;
    color: #1D4ED8;
}

.isr-tag-trend {
    background: #FFE0EC;
    color: #BE185D;
}

.isr-hub-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.isr-plat {
    grid-column: span 3;
    background: var(--isr-surface);
    border-radius: var(--isr-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--isr-shadow-card);
    transition: transform .25s ease, box-shadow .25s ease;
}

.isr-plat:hover {
    transform: translateY(-4px);
    box-shadow: var(--isr-shadow-hover);
}

.isr-plat-feature {
    grid-column: span 6;
}

.isr-plat-bar {
    height: 4px;
    background: var(--isr-primary);
}

.isr-plat-img {
    aspect-ratio: 16/10;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.isr-plat-feature .isr-plat-img {
    aspect-ratio: 16/9;
}

.isr-img-pattern {
    width: 100%;
    height: 100%;
    position: relative;
    background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.10) 0px, rgba(255, 255, 255, 0.10) 1px, transparent 1px, transparent 14px), var(--isr-platform-gradient, linear-gradient(135deg, #7B3FF2 0%, #5B1FCC 100%));
    display: grid;
    place-items: center;
}

.isr-img-pattern::after {
    content: attr(data-label);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 12px;
    border: 1px dashed rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.15);
}

.isr-img-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.95);
    z-index: 2;
}

.isr-plat-body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.isr-plat-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--isr-primary);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -0.015em;
}

.isr-title-sub {
    color: var(--isr-ink-3);
    font-weight: 500;
    font-size: 13px;
}

.isr-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--isr-primary);
    flex: none;
}

.isr-dot-instagram {
    background: #DD2A7B;
}

.isr-dot-linkedin {
    background: #0A66C2;
}

.isr-dot-tiktok {
    background: #FE2C55;
}

.isr-dot-facebook {
    background: #1877F2;
}

.isr-dot-x {
    background: #0F0F10;
}

.isr-dot-youtube {
    background: #FF0000;
}

.isr-dot-pinterest {
    background: #E60023;
}

.isr-dot-gmb {
    background: #4285F4;
}

.isr-plat-text {
    font-size: 14px;
    line-height: 1.55;
    color: var(--isr-ink-2);
    margin: 0;
}

.isr-plat-stats {
    display: flex;
    gap: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--isr-hairline);
    margin-top: 4px;
    flex-wrap: wrap;
}

.isr-plat-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.isr-stat-n {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.015em;
    color: var(--isr-ink);
}

.isr-stat-l {
    font-size: 11px;
    color: var(--isr-ink-3);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.isr-instagram .isr-plat-bar {
    background: linear-gradient(90deg, #FEDA77, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.isr-instagram .isr-img-pattern {
    --isr-platform-gradient: linear-gradient(135deg, #FEDA77 0%, #F58529 25%, #DD2A7B 60%, #515BD4 100%);
}

.isr-facebook .isr-plat-bar {
    background: #1877F2;
}

.isr-facebook .isr-img-pattern {
    --isr-platform-gradient: linear-gradient(135deg, #1877F2 0%, #4267B2 100%);
}

.isr-x .isr-plat-bar {
    background: #0F0F10;
}

.isr-x .isr-img-pattern {
    --isr-platform-gradient: linear-gradient(135deg, #1A1A1F 0%, #0F0F10 100%);
}

.isr-linkedin .isr-plat-bar {
    background: #0A66C2;
}

.isr-linkedin .isr-img-pattern {
    --isr-platform-gradient: linear-gradient(135deg, #0A66C2 0%, #004182 100%);
}

.isr-youtube .isr-plat-bar {
    background: #FF0000;
}

.isr-youtube .isr-img-pattern {
    --isr-platform-gradient: linear-gradient(135deg, #FF4444 0%, #C00000 100%);
}

.isr-tiktok .isr-plat-bar {
    background: linear-gradient(90deg, #25F4EE, #000, #FE2C55);
}

.isr-tiktok .isr-img-pattern {
    --isr-platform-gradient: linear-gradient(135deg, #25F4EE 0%, #0A0A0F 50%, #FE2C55 100%);
}

.isr-pinterest .isr-plat-bar {
    background: #E60023;
}

.isr-pinterest .isr-img-pattern {
    --isr-platform-gradient: linear-gradient(135deg, #E60023 0%, #AD081B 100%);
}

.isr-gmb .isr-plat-bar {
    background: linear-gradient(90deg, #4285F4, #34A853, #FBBC04, #EA4335);
}

.isr-gmb .isr-img-pattern {
    --isr-platform-gradient: linear-gradient(135deg, #4285F4 0%, #34A853 40%, #FBBC04 70%, #EA4335 100%);
}

.isr-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.isr-step {
    background: var(--isr-surface);
    border-radius: var(--isr-radius);
    padding: 28px;
    box-shadow: var(--isr-shadow-card);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.isr-step-num {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 13px;
    font-weight: 600;
    color: var(--isr-primary);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.isr-step-num::before {
    content: "STEP ";
}

.isr-step-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
    color: var(--isr-ink);
}

.isr-step-body {
    font-size: 14px;
    line-height: 1.6;
    color: var(--isr-ink-2);
    margin: 0 0 20px;
}

.isr-step-viz {
    margin-top: auto;
    height: 200px;
    background: var(--isr-surface-2);
    border-radius: 14px;
    padding: 16px;
    position: relative;
    overflow: hidden;
}

.isr-url-bar {
    background: #fff;
    border: 1px solid var(--isr-hairline);
    border-radius: 999px;
    padding: 10px 16px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 12px;
    color: var(--isr-ink-2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.isr-url-bar span {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: var(--isr-mint);
}

.isr-scan-line {
    position: absolute;
    left: 16px;
    right: 16px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--isr-primary), transparent);
    top: 60px;
    animation: isr-scan 2.4s ease-in-out infinite;
}

@keyframes isr-scan {

    0%,
    100% {
        top: 60px;
        opacity: 0;
    }

    50% {
        top: 160px;
        opacity: 1;
    }
}

.isr-gen-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 14px;
}

.isr-gen-row {
    background: #fff;
    border: 1px solid var(--isr-hairline);
    border-radius: 8px;
    height: 26px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 8px;
    font-size: 11px;
    color: var(--isr-ink-2);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.isr-gen-row::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--isr-mint);
    flex: none;
}

.isr-gen-row.isr-pending::before {
    background: var(--isr-ink-3);
    animation: isr-pulse 1.2s ease-in-out infinite;
}

@keyframes isr-pulse {
    50% {
        opacity: .3;
    }
}

.isr-post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    height: 100%;
}

.isr-post-card {
    background: #fff;
    border: 1px solid var(--isr-hairline);
    border-radius: 10px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.isr-post-thumb {
    height: 56px;
    border-radius: 6px;
}

.isr-post-thumb.isr-a {
    background: linear-gradient(135deg, #7B3FF2, #FF6B5B);
}

.isr-post-thumb.isr-b {
    background: linear-gradient(135deg, #34D399, #7B3FF2);
}

.isr-post-thumb.isr-c {
    background: linear-gradient(135deg, #F59E0B, #FF6B5B);
}

.isr-post-thumb.isr-d {
    background: linear-gradient(135deg, #0A66C2, #7B3FF2);
}

.isr-post-thumb.isr-e {
    background: linear-gradient(135deg, #DD2A7B, #FEDA77);
}

.isr-post-thumb.isr-f {
    background: linear-gradient(135deg, #1877F2, #25F4EE);
}

.isr-post-line {
    height: 4px;
    border-radius: 2px;
    background: var(--isr-surface-2);
}

.isr-post-line.isr-short {
    width: 60%;
}

.isr-cal {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 10px;
    color: var(--isr-ink-3);
}

.isr-cal-day {
    aspect-ratio: 1;
    background: #fff;
    border: 1px solid var(--isr-hairline);
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    padding: 4px;
    position: relative;
}

.isr-cal-day.isr-has::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 4px;
    right: 4px;
    height: 4px;
    border-radius: 2px;
    background: var(--isr-primary);
}

.isr-cal-day.isr-has.isr-alt::after {
    background: var(--isr-coral);
}

.isr-cal-day.isr-today {
    border-color: var(--isr-primary);
    border-width: 1.5px;
}

.isr-stat-strip {
    background: var(--isr-surface);
    border-radius: var(--isr-radius-lg);
    padding: 48px;
    display: grid;
    grid-template-columns: 1.2fr repeat(4, 1fr);
    gap: 32px;
    align-items: center;
    box-shadow: var(--isr-shadow-card);
    position: relative;
    overflow: hidden;
}

.isr-stat-strip::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 50%;
    aspect-ratio: 1;
    border-radius: 999px;
    background: radial-gradient(circle, var(--isr-primary-soft), transparent 70%);
    pointer-events: none;
}

.isr-pitch {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.isr-pitch h3 {
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--isr-ink);
    margin: 0;
}

.isr-pitch p {
    color: var(--isr-ink-2);
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

.isr-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    border-left: 1px solid var(--isr-hairline);
    padding-left: 24px;
}

.isr-big {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--isr-ink);
}

.isr-big span {
    color: var(--isr-primary);
}

.isr-label {
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--isr-ink-3);
    font-weight: 600;
}

.isr-ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.isr-ba-col {
    padding: 40px;
    border-radius: var(--isr-radius);
    background: var(--isr-surface);
    box-shadow: var(--isr-shadow-card);
    position: relative;
}

.isr-after {
    background: linear-gradient(180deg, var(--isr-surface) 0%, var(--isr-primary-soft) 100%);
    border: 1px solid var(--isr-primary-soft);
}

.isr-after::after {
    content: "✦";
    position: absolute;
    top: 24px;
    right: 28px;
    color: var(--isr-primary);
    font-size: 18px;
}

.isr-ba-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--isr-coral);
    margin-bottom: 12px;
}

.isr-after .isr-ba-label {
    color: var(--isr-primary);
}

.isr-ba-title {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin: 0 0 28px;
    line-height: 1.2;
    color: var(--isr-ink);
}

.isr-ba-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.isr-ba-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.55;
    color: var(--isr-ink-2);
}

.isr-ba-list li>span {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    flex: none;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 700;
    margin-top: 1px;
}

.isr-ba-list p {
    margin: 0;
}

.isr-before .isr-ba-list li>span {
    background: #FFE0DC;
    color: #B91C1C;
}

.isr-after .isr-ba-list li>span {
    background: #D6F5E5;
    color: #047857;
}

.isr-ba-stack {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.isr-ba-stack span {
    background: #fff;
    border: 1px solid var(--isr-hairline);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--isr-ink-2);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.isr-ba-stack b {
    color: #B91C1C;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.isr-ba-stack .isr-indzu-chip {
    background: var(--isr-primary);
    border-color: var(--isr-primary);
    color: #fff;
    padding: 8px 16px;
    font-size: 13px;
}

.isr-ba-cost {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px dashed var(--isr-hairline);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
}

.isr-ba-cost span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--isr-blue);
    font-weight: 700;
}

.isr-ba-cost b {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-weight: 600;
    font-size: 14px;
}

.isr-before .isr-ba-cost b {
    color: #B91C1C;
}

.isr-after .isr-ba-cost b {
    color: #047857;
}

.isr-quotes-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.isr-quote-card {
    background: var(--isr-surface);
    box-shadow: var(--isr-shadow-card);
    border-radius: var(--isr-radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    grid-column: span 4;
}

.isr-featured-quote {
    grid-column: span 8;
    background: linear-gradient(135deg, #4C1D95 0%, #7B3FF2 60%, #A855F7 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.isr-featured-quote::before {
    content: "“";
    position: absolute;
    top: -30px;
    left: 20px;
    font-size: 220px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.08);
    font-weight: 700;
}

.isr-stars {
    color: var(--isr-orange);
    letter-spacing: 2px;
    font-size: 14px;
}

.isr-quote-card blockquote {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: var(--isr-ink);
    font-weight: 500;
}

.isr-featured-quote blockquote {
    color: #fff;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.02em;
    position: relative;
}

.isr-featured-quote blockquote span {
    color: #FCD34D;
}

.isr-author {
    display: flex;
    gap: 12px;
    align-items: center;
}

.isr-avatar {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: #fff;
    font-size: 14px;
    flex: none;
}

.isr-av-1 {
    background: linear-gradient(135deg, #FCD34D, #F472B6);
}

.isr-av-2 {
    background: linear-gradient(135deg, #34D399, #7B3FF2);
}

.isr-av-3 {
    background: linear-gradient(135deg, #F59E0B, #FF6B5B);
}

.isr-av-4 {
    background: linear-gradient(135deg, #0A66C2, #25F4EE);
}

.isr-av-5 {
    background: linear-gradient(135deg, #DD2A7B, #FEDA77);
}

.isr-av-6 {
    background: linear-gradient(135deg, #FE2C55, #25F4EE);
}

.isr-author strong {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--isr-ink);
}

.isr-author small {
    display: block;
    font-size: 12px;
    color: var(--isr-ink-3);
}

.isr-featured-quote .isr-author strong {
    color: #fff;
}

.isr-featured-quote .isr-author small {
    color: rgba(255, 255, 255, 0.7);
}

.isr-blog-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.isr-blog-head>div {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.isr-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.isr-blog-card {
    background: var(--isr-surface);
    border-radius: var(--isr-radius);
    overflow: hidden;
    box-shadow: var(--isr-shadow-card);
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
    color: inherit;
}

.isr-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--isr-shadow-hover);
}

.isr-blog-cover {
    aspect-ratio: 16/10;
    position: relative;
    background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.10) 0 1px, transparent 1px 14px), var(--isr-cover, linear-gradient(135deg, #7B3FF2, #FF6B5B));
    display: grid;
    place-items: center;
    overflow: hidden;
}

.isr-blog-cover::after {
    content: attr(data-label);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 10px;
    border: 1px dashed rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.isr-blog-cover.isr-has-image::after {
    display: none;
}

.isr-blog-cover img {
    width: 100%;
    height: 100%;
    transition: transform .25s ease;
}

.isr-blog-card:hover .isr-blog-cover img {
    transform: scale(1.04);
}

.isr-cover-1 {
    --isr-cover: linear-gradient(135deg, #1877F2 0%, #7B3FF2 100%);
}

.isr-cover-2 {
    --isr-cover: linear-gradient(135deg, #DD2A7B 0%, #FEDA77 100%);
}

.isr-cover-3 {
    --isr-cover: linear-gradient(135deg, #FE2C55 0%, #25F4EE 100%);
}

.isr-blog-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--isr-primary);
    font-size: 10px;
    font-weight: 700;
    padding: 5px 11px;
    border-radius: 999px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 2;
}

.isr-read-time {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(21, 19, 28, 0.7);
    color: #fff;
    font-size: 10px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    padding: 4px 8px;
    border-radius: 6px;
    z-index: 2;
}

.isr-blog-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.isr-blog-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.3;
    color: var(--isr-ink);
    margin: 0;
}

.isr-blog-excerpt {
    font-size: 13px;
    line-height: 1.55;
    color: var(--isr-ink-2);
    flex: 1;
    margin: 0;
}

.isr-blog-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--isr-hairline);
}

.isr-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--isr-primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.isr-blog-date {
    font-size: 11px;
    color: var(--isr-ink-3);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.isr-no-posts {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--isr-ink-2);
    padding: 48px 0;
    margin: 0;
}

.isr-faq-wrap {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 64px;
    align-items: flex-start;
}

.isr-faq-side .isr-heading {
    margin-top: 16px;
}

.isr-faq-side .isr-lead {
    margin-top: 16px;
}

.isr-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.isr-faq-item {
    background: var(--isr-surface);
    border-radius: var(--isr-radius);
    box-shadow: var(--isr-shadow-card);
    overflow: hidden;
    transition: box-shadow .2s ease;
}

.isr-faq-item[open] {
    box-shadow: 0 4px 12px rgba(123, 63, 242, 0.10), 0 16px 32px rgba(21, 19, 28, 0.06);
}

.isr-faq-item summary {
    padding: 22px 24px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--isr-ink);
}

.isr-faq-item summary::-webkit-details-marker {
    display: none;
}

.isr-faq-item summary::after {
    content: "+";
    font-size: 24px;
    font-weight: 400;
    color: var(--isr-primary);
    transition: transform .25s ease;
    line-height: 1;
    width: 24px;
    text-align: center;
}

.isr-faq-item[open] summary::after {
    transform: rotate(45deg);
}

.isr-faq-item>div {
    padding: 0 24px 24px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--isr-ink-2);
}

.isr-help-box {
    background: linear-gradient(135deg, #4C1D95 0%, #7B3FF2 100%);
    color: #fff;
    border-radius: var(--isr-radius);
    padding: 28px;
    margin-top: 24px;
    position: relative;
    overflow: hidden;
}

.isr-help-box::after {
    content: "✦";
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 16px;
    opacity: .5;
}

.isr-help-box h4 {
    color: #fff;
    font-size: 18px;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}

.isr-help-box p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 20px;
}

.isr-help-box .isr-btn {
    background: #fff;
    color: var(--isr-primary);
    border: none;
}

.isr-help-box .isr-btn:hover {
    background: #FCD34D;
    color: #1A1A1A;
}

.isr-cta {
    background: linear-gradient(135deg, #2E0E63 0%, #5B1FCC 45%, #7B3FF2 80%, #A855F7 100%);
    border-radius: var(--isr-radius-lg);
    padding: 80px 64px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
}

.isr-cta::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    aspect-ratio: 1;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(168, 85, 247, .5), transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.isr-cta::after {
    content: "";
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 50%;
    aspect-ratio: 1;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(76, 29, 149, .6), transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.isr-cta-text {
    position: relative;
    z-index: 1;
}

.isr-cta h2 {
    color: #fff;
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 16px;
}

.isr-cta h2 span {
    background: linear-gradient(90deg, #A855F7, #F472B6, #F59E0B, #34D399, #06B6D4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.isr-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    max-width: 460px;
    margin: 0 0 28px;
    line-height: 1.55;
}

.isr-cta-actions {
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
}

.isr-cta .isr-btn-primary {
    background: #fff;
    color: var(--isr-primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}

.isr-cta .isr-btn-primary:hover {
    background: #FCD34D;
    color: #1A1A1A;
}

.isr-cta .isr-btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, .3);
}

.isr-cta .isr-btn-ghost:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border-color: rgba(255, 255, 255, .5);
}

.isr-cta-foot {
    margin-top: 24px;
    font-size: 12px;
    color: rgba(255, 255, 255, .75);
    display: inline-flex;
    gap: 18px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    flex-wrap: wrap;
}

.isr-cta-foot span::before {
    content: "✓ ";
    color: var(--isr-mint);
}

.isr-cta-visual {
    position: relative;
    z-index: 1;
    aspect-ratio: 4/3;
    border-radius: 20px;
    background: repeating-linear-gradient(135deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 14px), linear-gradient(135deg, #1A0939 0%, #4C1D95 100%);
    display: grid;
    place-items: center;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .3);
    overflow: hidden;
    padding: 24px;
}

.isr-mock-dash {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 14px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.isr-mock-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.isr-mock-head span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .3);
}

.isr-mock-head span:nth-child(1) {
    background: #FF6B5B;
}

.isr-mock-head span:nth-child(2) {
    background: #FCD34D;
}

.isr-mock-head span:nth-child(3) {
    background: var(--isr-mint);
}

.isr-mock-head em {
    margin-left: 8px;
    font-style: normal;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, .7);
}

.isr-mock-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.isr-mock-rows div {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, .85);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.isr-mock-rows span {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--isr-mint);
    flex: none;
}

.isr-mock-rows .isr-scheduled span {
    background: #FCD34D;
}

.isr-mock-rows .isr-draft span {
    background: rgba(255, 255, 255, .4);
}

.isr-mock-rows em {
    margin-left: auto;
    opacity: .6;
    font-style: normal;
    font-size: 10px;
}

@media (max-width: 980px) {
    .isr-section {
        padding: 64px 0;
    }

    .isr-section+.isr-section {
        padding-top: 0;
    }

    .isr-section-compact,
    .isr-final-section {
        padding: 32px 0 64px;
    }

    .isr-wrap {
        padding: 0 20px;
    }

    .isr-hub-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .isr-plat {
        grid-column: span 3;
    }

    .isr-plat-feature {
        grid-column: span 6;
    }

    .isr-steps {
        grid-template-columns: 1fr;
    }

    .isr-stat-strip {
        grid-template-columns: 1fr 1fr;
        padding: 28px;
        gap: 20px;
    }

    .isr-pitch {
        grid-column: span 2;
    }

    .isr-stat {
        border-left: none;
        padding-left: 0;
    }

    .isr-ba-grid {
        grid-template-columns: 1fr;
    }

    .isr-quotes-grid {
        grid-template-columns: 1fr;
    }

    .isr-quote-card,
    .isr-featured-quote {
        grid-column: span 1;
    }

    .isr-featured-quote blockquote {
        font-size: 22px;
    }

    .isr-blog-grid {
        grid-template-columns: 1fr;
    }

    .isr-faq-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .isr-cta {
        grid-template-columns: 1fr;
        padding: 48px 28px;
    }
}

@media (max-width: 640px) {
    .isr-heading {
        font-size: clamp(30px, 11vw, 42px);
    }

    .isr-sec-header {
        margin-bottom: 42px;
    }

    .isr-hub-grid {
        grid-template-columns: 1fr;
    }

    .isr-plat,
    .isr-plat-feature {
        grid-column: span 1;
    }

    .isr-plat-stats {
        gap: 12px;
    }

    .isr-stat-strip {
        grid-template-columns: 1fr;
    }

    .isr-pitch {
        grid-column: span 1;
    }

    .isr-ba-col {
        padding: 28px;
    }

    .isr-ba-cost {
        flex-direction: column;
        align-items: flex-start;
    }

    .isr-blog-head {
        align-items: flex-start;
    }

    .isr-cta {
        padding: 38px 22px;
        border-radius: 22px;
    }

    .isr-cta-visual {
        padding: 16px;
    }

    .isr-mock-rows div {
        font-size: 10px;
        padding: 9px 10px;
    }
}


/* ---------- Image support used by the new index.html platform cards ---------- */
.indzu-social-redesign {
    background: #F7F5FB !important;
}

.indzu-social-redesign .isr-section,
.indzu-social-redesign .isr-wrap {
    background: transparent !important;
}

.indzu-social-redesign .isr-img-pattern {
    overflow: hidden;
}

.indzu-social-redesign .isr-platform-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    z-index: 0;
    transform: scale(1.01);
    transition: transform .35s ease, filter .35s ease;
}

.indzu-social-redesign .isr-plat:hover .isr-platform-photo {
    transform: scale(1.07);
    filter: saturate(1.08) contrast(1.04);
}

.indzu-social-redesign .isr-img-pattern::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(21, 19, 28, 0.02), rgba(21, 19, 28, 0.30)), repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 14px);
    pointer-events: none;
}

.indzu-social-redesign .isr-img-pattern::after {
    position: relative;
    z-index: 2;
}

.indzu-social-redesign .isr-post-thumb {
    overflow: hidden;
}

.indzu-social-redesign .isr-post-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: inherit;
}

/* ---------- Placement spacing for new sections ---------- */
.indzu-social-redesign--before-showcase {
    padding: 34px 0 28px;
}

.indzu-social-redesign--after-showcase {
    padding: 42px 0 0;
}

.indzu-social-redesign--before-showcase .isr-section {
    padding-top: 82px;
    padding-bottom: 84px;
}

.indzu-social-redesign--after-showcase .isr-testimonials,
.indzu-social-redesign--after-showcase .isr-blog-section,
.indzu-social-redesign--after-showcase .isr-faq-section {
    padding-top: 90px;
}

/* ---------- New Section: How Indzu Social compares ---------- */
.pricing-comparison {
    --pc-bg: #F3F2F8;
    --pc-ink: #15161A;
    --pc-muted: #56565E;
    --pc-muted-2: #5f636b;
    --pc-muted-3: #2c2c3f;
    --pc-line: #E7E5F0;
    --pc-violet: oklch(0.55 0.20 290);
    --pc-violet-deep: oklch(0.40 0.16 290);
    --pc-violet-tint: oklch(0.96 0.022 290);
    --pc-violet-line: oklch(0.88 0.05 290);
    --pc-good: oklch(0.52 0.13 150);
    --pc-good-bg: oklch(0.93 0.055 150);
    --pc-bad: oklch(0.60 0.17 25);
    --pc-bad-bg: oklch(0.94 0.04 25);
    --pc-radius: 24px;
    background: var(--pc-bg);
    color: var(--pc-ink);
    font-family: 'Inter', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.pricing-comparison,
.pricing-comparison * {
    box-sizing: border-box;
}

.pricing-comparison .pc-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 96px 40px 110px;
}

.pricing-comparison .pc-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}

.pricing-comparison .pc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pc-violet);
    margin: 0 0 22px;
}

.pricing-comparison .pc-head h2 {
    font-size: clamp(36px, 4.4vw, 52px);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0;
    text-wrap: balance;
}

.pricing-comparison .pc-head h2 .accent {
    color: var(--pc-violet);
}

.pricing-comparison .pc-head p:not(.pc-eyebrow) {
    margin: 22px auto 0;
    max-width: 600px;
    font-size: 17.5px;
    line-height: 1.55;
    color: var(--pc-muted);
    text-wrap: pretty;
}

.pricing-comparison .pc-table-scroll {
    /* overflow-x: auto; */
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    padding: 42px 0 4px;
    margin: 0 -40px;
}

.pricing-comparison .pc-table-scroll::-webkit-scrollbar {
    height: 8px;
}

.pricing-comparison .pc-table-scroll::-webkit-scrollbar-thumb {
    background: #D7D5E2;
    border-radius: 8px;
}

.pricing-comparison .pc-table {
    --pc-label-col: 270px;
    --pc-buffer-col: 170px;
    --pc-planable-col: 210px;
    --pc-socialbee-col: 190px;
    --pc-indzu-col: 270px;
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: var(--pc-label-col) var(--pc-buffer-col) var(--pc-planable-col) var(--pc-socialbee-col) var(--pc-indzu-col);
    min-width: calc(var(--pc-label-col) + var(--pc-buffer-col) + var(--pc-planable-col) + var(--pc-socialbee-col) + var(--pc-indzu-col) + 80px);
    margin: 0 auto;
    width: max-content;
    padding: 0 40px;
}

.pricing-comparison .pc-hl {
    position: absolute;
    top: -16px;
    bottom: 18px;
    left: calc(40px + var(--pc-label-col) + var(--pc-buffer-col) + var(--pc-planable-col) + var(--pc-socialbee-col));
    width: var(--pc-indzu-col);
    background: linear-gradient(180deg, #FFFFFF 0%, var(--pc-violet-tint) 100%);
    border: 1.5px solid var(--pc-violet-line);
    border-radius: var(--pc-radius);
    box-shadow: 0 30px 60px -28px oklch(0.55 0.20 290 / 0.45), 0 4px 16px -8px oklch(0.55 0.20 290 / 0.25);
    z-index: 0;
}

.pricing-comparison .pc-hl__badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--pc-violet);
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 13px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 8px 20px -8px oklch(0.55 0.20 290 / 0.7);
}

.pricing-comparison .pc-cell {
    position: relative;
    z-index: 1;
    padding: 16px 16px;
    border-bottom: 1px solid var(--pc-line);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 64px;
}

.pricing-comparison {
    margin: 40px auto 0;
}

.pricing-comparison .pc-cell.pc-col-plan {
    align-items: center;
    text-align: center;
}

.pricing-comparison .pc-cell.pc-col-indzu {
    border-bottom-color: var(--pc-violet-line);
}

.pricing-comparison .pc-table .pc-cell:nth-last-child(-n+5) {
    border-bottom: none;
}

.pricing-comparison .pc-cell--head {
    min-height: 132px;
    align-items: flex-end;
    padding-bottom: 22px;
}

.isr-review-title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #7b3ff2;
    margin-bottom: 10px;
}

.pricing-comparison .pc-cell--head.pc-col-plan {
    align-items: center;
}

.pricing-comparison .pc-brand {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
}

.pricing-comparison .pc-logo {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    overflow: hidden;
}

.pricing-comparison .pc-logo--brand {
    background: #fff;
    border: 1px solid var(--pc-line);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .9) inset;
}

.pricing-comparison .pc-logo--brand img {
    width: 18px;
    height: 18px;
    display: block;
    object-fit: contain;
}

.pricing-comparison .pc-brand--indzu {
    color: var(--pc-violet-deep);
}

.pricing-comparison .pc-brand-sub {
    font-size: 12.5px;
    color: var(--pc-muted-3);
    margin-top: 7px;
    font-weight: 500;
}

.pricing-comparison .pc-lede__k {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--isr-blue);
    font-weight: 700;
}

.pricing-comparison .pc-lede__t {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-top: 8px;
    line-height: 1.3;
}

.pricing-comparison .pc-cell--price {
    min-height: 120px;
}

.pricing-comparison .pc-price {
    display: flex;
    align-items: baseline;
    gap: 3px;
    justify-content: center;
}

.pricing-comparison .pc-price__cur {
    font-size: 18px;
    font-weight: 600;
    color: var(--pc-muted);
}

.pricing-comparison .pc-price__num {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

.pricing-comparison .pc-price__per {
    font-size: 13px;
    color: var(--pc-muted-2);
    font-weight: 500;
}

.pricing-comparison .pc-col-indzu .pc-price__num {
    color: var(--pc-violet-deep);
}

.pricing-comparison .pc-price__note {
    font-size: 12px;
    color: var(--pc-muted-2);
    margin-top: 9px;
    line-height: 1.35;
}

.pricing-comparison .pc-price__note.warn {
    color: var(--pc-bad);
    font-weight: 500;
}

.pricing-comparison .pc-price__note.win {
    color: var(--pc-good);
    font-weight: 600;
}

.pricing-comparison .pc-feat {
    font-size: 15.5px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.pricing-comparison .pc-feat__sub {
    font-size: 12.5px;
    color: var(--pc-muted-2);
    margin-top: 3px;
    font-weight: 400;
    line-height: 1.4;
}

.pricing-comparison .pc-val {
    font-size: 14.5px;
    color: var(--pc-muted);
    font-weight: 500;
    line-height: 1.35;
}

.pricing-comparison .pc-col-indzu .pc-val {
    color: var(--pc-ink);
    font-weight: 600;
}

.pricing-comparison .pc-val--warn {
    color: var(--pc-bad);
    font-weight: 600;
}

.pricing-comparison .pc-mark {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    flex: none;
}

.pricing-comparison .pc-mark--good {
    background: var(--pc-good-bg);
}

.pricing-comparison .pc-mark--bad {
    background: var(--pc-bad-bg);
}

.pricing-comparison .pc-mark+.pc-mlabel {
    font-size: 13px;
    color: var(--pc-muted-2);
    font-weight: 500;
    margin-top: 8px;
}

.pricing-comparison .pc-markrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.pricing-comparison .pc-col-indzu .pc-mark+.pc-mlabel {
    color: var(--pc-good);
    font-weight: 600;
}

.pricing-comparison .pc-cell--cta {
    min-height: 104px;
    padding-top: 22px;
    padding-bottom: 26px;
}

.pricing-comparison .pc-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--pc-violet);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    padding: 13px 22px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 14px 30px -12px oklch(0.55 0.20 290 / 0.7);
    transition: transform .15s ease, box-shadow .15s ease;
    white-space: nowrap;
}

.pricing-comparison .pc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px -12px oklch(0.55 0.20 290 / 0.8);
}

.pricing-comparison .pc-foot {
    max-width: 1060px;
    margin: 30px auto 0;
    padding: 0 40px;
    display: flex;
    gap: 22px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.pricing-comparison .pc-legend {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.pricing-comparison .pc-legend span {
    /* display: inline-flex; */
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--pc-muted);
    font-weight: 500;
}

.pricing-comparison .pc-legend .pc-mark {
    width: 20px;
    height: 20px;
}

.pricing-comparison .pc-src {
    font-size: 11px;
    color: var(--pc-muted-2);
    line-height: 1.6;
    letter-spacing: 0.01em;
    text-align: right;
}

@media (max-width: 760px) {
    .pricing-comparison .pc-section {
        padding: 64px 20px 80px;
    }

    .pricing-comparison .pc-table-scroll {
        margin: 0 -20px;
    }

    .pricing-comparison .pc-table {
        --pc-label-col: 220px;
        --pc-buffer-col: 148px;
        --pc-planable-col: 148px;
        --pc-socialbee-col: 160px;
        --pc-indzu-col: 224px;
        padding: 0 20px;
        min-width: calc(var(--pc-label-col) + var(--pc-buffer-col) + var(--pc-planable-col) + var(--pc-socialbee-col) + var(--pc-indzu-col) + 40px);
    }

    .pricing-comparison .pc-hl {
        left: calc(20px + var(--pc-label-col) + var(--pc-buffer-col) + var(--pc-planable-col) + var(--pc-socialbee-col));
    }

    .pricing-comparison .pc-cell {
        padding: 14px 12px;
    }

    .pricing-comparison .pc-brand {
        font-size: 17px;
        gap: 7px;
    }

    .pricing-comparison .pc-logo {
        width: 24px;
        height: 24px;
    }

    .pricing-comparison .pc-price__num {
        font-size: 34px;
    }

    .pricing-comparison .pc-price {
        flex-wrap: wrap;
        row-gap: 2px;
    }

    .pricing-comparison .pc-price__per {
        flex-basis: 100%;
    }

    .pricing-comparison .pc-foot {
        padding: 0 20px;
    }

    .pricing-comparison .pc-src {
        text-align: left;
    }
}

@media (min-width: 761px) and (max-width: 1180px) {
    .pricing-comparison .pc-section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .pricing-comparison .pc-table-scroll {
        margin: 0 -24px;
    }
}

/* ========================================================
   RESPONSIVE RULES FOR NEW SOCIAL SECTIONS
   ======================================================== */
@media (max-width: 980px) {
    .redesigned-home section {
        padding: 64px 0;
    }

    .redesigned-home .wrap {
        padding: 0 20px;
    }

    .redesigned-home #platforms .hub-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .redesigned-home .plat {
        grid-column: span 3;
    }

    .redesigned-home .plat.feature {
        grid-column: span 6;
    }

    .redesigned-home #how .steps {
        grid-template-columns: 1fr;
    }

    .redesigned-home .stat-strip {
        grid-template-columns: 1fr 1fr;
        padding: 28px;
        gap: 20px;
    }

    .redesigned-home .stat-strip .pitch {
        grid-column: span 2;
    }

    .redesigned-home .stat {
        border-left: none;
        padding-left: 0;
    }

    .redesigned-home .ba-grid {
        grid-template-columns: 1fr;
    }

    .redesigned-home .quotes-grid {
        grid-template-columns: 1fr;
    }

    .redesigned-home .quote-card,
    .redesigned-home .quote-card.featured {
        grid-column: span 1;
    }

    .redesigned-home .quote-card.featured blockquote {
        font-size: 22px;
    }

    .redesigned-home .blog-grid {
        grid-template-columns: 1fr;
    }

    .redesigned-home .faq-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .redesigned-home .cta {
        grid-template-columns: 1fr;
        padding: 48px 28px;
    }


}

.pricing-comparison {
    background: #F3F2F8 !important;
}

/* ---------- Mobile fixes for new social sections only ---------- */
@media (max-width: 980px) {
    .indzu-social-redesign--before-showcase {
        padding: 24px 0 20px;
    }

    .indzu-social-redesign--before-showcase .isr-section,
    .indzu-social-redesign--after-showcase .isr-testimonials,
    .indzu-social-redesign--after-showcase .isr-blog-section,
    .indzu-social-redesign--after-showcase .isr-faq-section {
        padding-top: 64px;
    }
}

/* ========================================================
   END SOCIAL HOME NEW INDEX SECTIONS
   ======================================================== */

/* Indzu Home Video Section CSS   */

.indzu-hero-video-wrap {
    width: 100%;
    max-width: 980px;
    margin: 30px auto 0;
    padding: 10px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(123, 97, 255, 0.16), rgba(79, 172, 254, 0.14), rgba(255, 77, 141, 0.12));
    border: 1px solid rgba(123, 97, 255, 0.16);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}

.indzu-hero-video-frame {
    overflow: hidden;
    border-radius: 22px;
    background: #0f172a;
}

.indzu-hero-demo-video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1280 / 728;
    object-fit: contain;
}


.testimonial_text {
    font-size: 20px !important;
    font-weight: 500 !important;
}


/* =========== */
/* Core Web CSS  */
/* =========== */
.indzu-hero-secondary-actions a {
    color: #3337F0 !important;
}
.indzu-hero-trust-sep {
    color: #2C05FF !important;
}

#evf-form-5228 .everest-forms-submit-button {
    color: #0B6028 !important;
}



/* =====================================================
   ACCESSIBILITY FIXES
   ===================================================== */

/* Stronger small-text contrast */
.indzu-social-redesign {
    --isr-ink-3: #615B6B;
    --isr-coral: #B42318;
    --isr-blue: #1D4ED8;
}

/* Pricing comparison contrast */
.pricing-comparison {
    --pc-muted-2: #4B5563;
    --pc-good: #067647;
    --pc-bad: #B42318;
}

/* Explicit overrides for Lighthouse flagged elements */
.isr-title-sub,
.isr-stat-l,
.isr-label,
.isr-cal,
.isr-author small,
.isr-blog-date {
    color: #615B6B;
}

.isr-ba-label {
    color: #B42318;
}

.isr-after .isr-ba-label {
    color: #5B21B6;
}

.isr-ba-cost span,
.pricing-comparison .pc-lede__k {
    color: #1D4ED8;
}

.pricing-comparison .pc-price__per,
.pricing-comparison .pc-price__note,
.pricing-comparison .pc-feat__sub,
.pricing-comparison .pc-mark + .pc-mlabel,
.pricing-comparison .pc-src {
    color: #4B5563;
}

.pricing-comparison .pc-price__note.warn,
.pricing-comparison .pc-val--warn {
    color: #B42318;
}

.pricing-comparison .pc-price__note.win,
.pricing-comparison .pc-col-indzu .pc-mark + .pc-mlabel {
    color: #067647;
}

/* Author metadata on purple featured testimonial */
.isr-featured-quote .isr-author small {
    color: #FFFFFF;
}

.platform-showcase-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 44px;
    min-height: 44px;

    padding: 12px 28px;

    border-radius: 50px;

    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;

    text-decoration: none;
    cursor: pointer;
}
.main-footer .social-icon-link {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
}

.platform-showcase-btn:focus-visible,
.social-icon-link:focus-visible,
.foot-links a:focus-visible,
.indzu-navbar a:focus-visible,
.indzu-navbar button:focus-visible {
    outline: 3px solid #111827 !important;
    outline-offset: 3px;
}
