/* ════════════════════════════════════════════════════════════════
   CAROUSEL MAKER — Landing Page Styles
   Bold & colorful: violet → pink → orange gradients
   ════════════════════════════════════════════════════════════════ */

/* ─── FONTS ─── */
@font-face {
    font-family: 'Space Grotesk';
    src: url('../assets/fonts/spacegrotesk-latin.woff2') format('woff2');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/inter-latin.woff2') format('woff2');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg:        #0A0A0F;
    --surface:   #141420;
    --border:    rgba(255, 255, 255, 0.06);
    --border-h:  rgba(255, 255, 255, 0.12);
    --text:      #F8FAFC;
    --text-m:    #94A3B8;
    --violet:    #7C3AED;
    --pink:      #EC4899;
    --orange:    #F97316;
    --grad:      linear-gradient(135deg, #7C3AED, #EC4899, #F97316);
    --grad-v:    linear-gradient(180deg, #7C3AED, #EC4899);
    --font-h:    'Space Grotesk', system-ui, -apple-system, sans-serif;
    --font-b:    'Inter', system-ui, -apple-system, sans-serif;
    --max-w:     1200px;
    --r-sm:      8px;
    --r-md:      16px;
    --r-lg:      24px;
    --r-xl:      32px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
    font-family: var(--font-b);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ─── GRADIENT TEXT UTILITY ─── */
.gradient-text {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
    object-fit: contain;
}
.nav-links {
    display: flex;
    gap: 32px;
}
.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-m);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }


/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-h);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s;
    white-space: nowrap;
}
.btn:hover { transform: scale(1.03); }
.btn:active { transform: scale(0.98); }

.btn-sm {
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 100px;
}
.btn-lg {
    font-size: 18px;
    padding: 16px 40px;
    border-radius: 100px;
}
.btn-gradient {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 4px 24px rgba(124, 58, 237, 0.25);
}
.btn-gradient:hover {
    box-shadow: 0 8px 40px rgba(124, 58, 237, 0.4), 0 0 0 1px rgba(236, 72, 153, 0.2);
}
.btn-white {
    background: #fff;
    color: #0A0A0F;
    box-shadow: 0 4px 24px rgba(255, 255, 255, 0.15);
}
.btn-white:hover {
    box-shadow: 0 8px 40px rgba(255, 255, 255, 0.25);
}
.btn-arrow { transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(4px); }


/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

/* Gradient glow orbs */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    will-change: transform;
}
.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: rgba(124, 58, 237, 0.2);
    top: -100px;
    left: -100px;
    animation: glow-drift 12s ease-in-out infinite alternate;
}
.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: rgba(236, 72, 153, 0.15);
    top: 100px;
    right: -150px;
    animation: glow-drift 15s ease-in-out infinite alternate-reverse;
}
.hero-glow-3 {
    width: 400px;
    height: 400px;
    background: rgba(249, 115, 22, 0.12);
    bottom: -50px;
    left: 30%;
    animation: glow-drift 10s ease-in-out infinite alternate;
}

@keyframes glow-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, -30px); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero-h1 {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.hero-sub {
    font-size: clamp(16px, 2vw, 21px);
    color: var(--text-m);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

/* Hero carousel card mockups */
.hero-cards {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 56px;
    perspective: 1200px;
    z-index: 2;
}
.hero-card {
    width: 220px;
    height: 280px;
    border-radius: var(--r-md);
    padding: 2px;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-card-inner {
    width: 100%;
    height: 100%;
    border-radius: calc(var(--r-md) - 2px);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.hero-card-tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.5;
    margin-bottom: auto;
}
.hero-card h3 {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 8px;
}
.hero-card p {
    font-size: 13px;
    line-height: 1.45;
    opacity: 0.7;
}

.hero-card-1 {
    background: linear-gradient(135deg, #7C3AED, #5B21B6);
    transform: rotate(-8deg) translateY(20px);
    animation: float-1 4s ease-in-out infinite alternate;
    z-index: 4;
}
.hero-card-1 .hero-card-inner { background: linear-gradient(160deg, rgba(124,58,237,0.3), rgba(91,33,182,0.9)); }

.hero-card-2 {
    background: linear-gradient(135deg, #9333EA, #7C3AED);
    transform: rotate(-3deg) translateY(0px);
    animation: float-2 4.5s ease-in-out infinite alternate;
    margin-left: -40px;
    z-index: 3;
}
.hero-card-2 .hero-card-inner { background: linear-gradient(160deg, rgba(147,51,234,0.3), rgba(124,58,237,0.9)); }

.hero-card-3 {
    background: linear-gradient(135deg, #EC4899, #DB2777);
    transform: rotate(3deg) translateY(10px);
    animation: float-3 3.8s ease-in-out infinite alternate;
    margin-left: -40px;
    z-index: 2;
}
.hero-card-3 .hero-card-inner { background: linear-gradient(160deg, rgba(236,72,153,0.3), rgba(219,39,119,0.9)); }

.hero-card-4 {
    background: linear-gradient(135deg, #F97316, #EA580C);
    transform: rotate(8deg) translateY(24px);
    animation: float-4 5s ease-in-out infinite alternate;
    margin-left: -40px;
    z-index: 1;
}
.hero-card-4 .hero-card-inner { background: linear-gradient(160deg, rgba(249,115,22,0.3), rgba(234,88,12,0.9)); }

@keyframes float-1 { 0% { transform: rotate(-8deg) translateY(20px); } 100% { transform: rotate(-7deg) translateY(12px); } }
@keyframes float-2 { 0% { transform: rotate(-3deg) translateY(0); }   100% { transform: rotate(-2deg) translateY(-8px); } }
@keyframes float-3 { 0% { transform: rotate(3deg) translateY(10px); }  100% { transform: rotate(4deg) translateY(2px); } }
@keyframes float-4 { 0% { transform: rotate(8deg) translateY(24px); }  100% { transform: rotate(7deg) translateY(16px); } }


/* ═══════════════════════════════════════════════════════════════
   SECTIONS — shared
   ═══════════════════════════════════════════════════════════════ */
.section {
    padding: 120px 0;
    position: relative;
}
.section-h2 {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: clamp(32px, 4.5vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 16px;
}
.section-sub {
    font-size: 19px;
    color: var(--text-m);
    text-align: center;
    margin-bottom: 64px;
}


/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS — 3-step strip
   ═══════════════════════════════════════════════════════════════ */
.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}
.step {
    flex: 1;
    max-width: 340px;
    text-align: center;
    padding: 32px 24px;
}
.step-number {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 72px;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}
.step-title {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.step-desc {
    font-size: 16px;
    color: var(--text-m);
    line-height: 1.5;
    margin-bottom: 24px;
}
.step-connector {
    display: flex;
    align-items: center;
    padding-top: 80px;
    flex-shrink: 0;
}

/* Step 1 — typing mock */
.step-input-mock {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 14px 16px;
    font-size: 14px;
    color: var(--text-m);
    text-align: left;
    position: relative;
}
.step-cursor {
    display: inline-block;
    width: 2px;
    height: 16px;
    background: var(--pink);
    vertical-align: text-bottom;
    margin-right: 2px;
    animation: cursor-blink 1s step-end infinite;
}
@keyframes cursor-blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }

/* Step 2 — mini cards mock */
.step-slides-mock {
    display: flex;
    justify-content: center;
    gap: 6px;
}
.step-mini-card {
    width: 36px;
    height: 48px;
    border-radius: 4px;
    background: var(--surface);
    border: 1px solid var(--border);
}
.step-mini-card:nth-child(1) { background: linear-gradient(135deg, rgba(124,58,237,0.4), rgba(124,58,237,0.1)); border-color: rgba(124,58,237,0.3); }
.step-mini-card:nth-child(2) { background: linear-gradient(135deg, rgba(147,51,234,0.3), rgba(147,51,234,0.1)); border-color: rgba(147,51,234,0.2); }
.step-mini-card:nth-child(3) { background: linear-gradient(135deg, rgba(236,72,153,0.3), rgba(236,72,153,0.1)); border-color: rgba(236,72,153,0.2); }
.step-mini-card:nth-child(4) { background: linear-gradient(135deg, rgba(249,115,22,0.3), rgba(249,115,22,0.1)); border-color: rgba(249,115,22,0.2); }
.step-mini-card:nth-child(5) { background: linear-gradient(135deg, rgba(249,115,22,0.2), rgba(249,115,22,0.05)); border-color: rgba(249,115,22,0.15); }

/* Step 3 — export mock */
.step-export-mock {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
}
.step-export-mock span {
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    font-family: var(--font-h);
}


/* ═══════════════════════════════════════════════════════════════
   FEATURES — BENTO GRID
   ═══════════════════════════════════════════════════════════════ */
.bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.bento-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 40px 36px;
    transition: border-color 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad);
    opacity: 0;
    transition: opacity 0.3s;
}
.bento-card:hover {
    border-color: var(--border-h);
    box-shadow: 0 8px 40px rgba(124, 58, 237, 0.08);
}
.bento-card:hover::before { opacity: 1; }

.bento-icon {
    margin-bottom: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.08);
    border-radius: 12px;
}
.bento-card h3 {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}
.bento-card p {
    font-size: 16px;
    color: var(--text-m);
    line-height: 1.6;
}

/* Per-card accent tints */
.bento-ai .bento-icon        { background: rgba(124, 58, 237, 0.1); }
.bento-templates .bento-icon  { background: rgba(236, 72, 153, 0.1); }
.bento-platforms .bento-icon   { background: rgba(124, 58, 237, 0.08); }
.bento-export .bento-icon      { background: rgba(249, 115, 22, 0.1); }


/* ═══════════════════════════════════════════════════════════════
   DEMO SECTION
   ═══════════════════════════════════════════════════════════════ */
.demo {
    display: flex;
    gap: 56px;
    align-items: center;
}
.demo-input-side {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.demo-label {
    font-family: var(--font-h);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-m);
    margin-bottom: 12px;
}
.demo-idea {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 20px 24px;
    font-size: 16px;
    font-style: italic;
    color: var(--text);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}
.demo-idea-icon { flex-shrink: 0; margin-top: 2px; }
.demo-arrow {
    padding: 16px 0;
}
.demo-cards-side { flex: 1; }

.demo-carousel {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 8px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.demo-carousel::-webkit-scrollbar { display: none; }

.demo-card {
    flex: 0 0 180px;
    height: 230px;
    border-radius: var(--r-md);
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(160deg, #1E1B4B, #312E81);
    border: 1px solid rgba(124, 58, 237, 0.2);
    scroll-snap-align: start;
    transition: transform 0.3s;
}
.demo-card:hover { transform: translateY(-4px); }

.demo-card-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--pink);
    margin-bottom: auto;
}
.demo-card h4 {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 8px;
}
.demo-card p {
    font-size: 12px;
    line-height: 1.45;
    color: rgba(248, 250, 252, 0.65);
}

/* Cover card — gradient accent */
.demo-card-cover {
    background: linear-gradient(160deg, #4C1D95, #7C3AED);
    border-color: rgba(124, 58, 237, 0.4);
}
.demo-card-cover h4 { font-size: 18px; }

/* CTA card */
.demo-card-cta {
    background: linear-gradient(160deg, #4C1D95, #6D28D9);
    text-align: center;
    justify-content: center;
    align-items: center;
    border-color: rgba(124, 58, 237, 0.3);
}


/* ═══════════════════════════════════════════════════════════════
   PLATFORM SIZES
   ═══════════════════════════════════════════════════════════════ */
.platforms {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
}
.platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.platform-frame {
    background: linear-gradient(160deg, #1E1B4B, #312E81);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.platform-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.15);
}
.platform-square   { width: 200px; height: 200px; }
.platform-portrait { width: 200px; height: 250px; }
.platform-story    { width: 160px; height: 284px; }

.platform-card-mock {
    text-align: center;
}
.platform-card-mock h5 {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.platform-card-mock p {
    font-size: 11px;
    color: rgba(248, 250, 252, 0.6);
    line-height: 1.4;
}
.platform-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}
.platform-size {
    font-size: 12px;
    color: var(--text-m);
    font-family: var(--font-h);
}


/* ═══════════════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════════════ */
.cta-section {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(124, 58, 237, 0.2), rgba(236, 72, 153, 0.1), transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.cta-h2 {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: clamp(32px, 4.5vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    position: relative;
}
.cta-note {
    margin-top: 16px;
    font-size: 15px;
    color: var(--text-m);
    position: relative;
}


/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
    border-top: 1px solid var(--border);
    padding: 32px 0;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-brand {
    font-family: var(--font-h);
    font-weight: 600;
    font-size: 15px;
    color: var(--text-m);
}
.footer-links {
    display: flex;
    gap: 24px;
}
.footer-links a {
    font-size: 14px;
    color: var(--text-m);
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    .section { padding: 80px 0; }
    .bento { grid-template-columns: 1fr 1fr; }
    .hero-cards { flex-wrap: wrap; justify-content: center; }
    .hero-card { width: 180px; height: 230px; }
    .hero-card h3 { font-size: 15px; }
    .hero-card p { font-size: 12px; }

    .demo { flex-direction: column; gap: 40px; }
    .demo-input-side { flex: none; width: 100%; max-width: 360px; }
    .demo-arrow {
        transform: none;
        padding: 8px 0;
    }

    .platforms { gap: 24px; }
    .platform-square   { width: 160px; height: 160px; }
    .platform-portrait { width: 160px; height: 200px; }
    .platform-story    { width: 130px; height: 231px; }
}

/* Mobile */
@media (max-width: 768px) {
    body { font-size: 16px; }
    .section { padding: 64px 0; }
    .section-sub { margin-bottom: 40px; font-size: 17px; }

    .nav-links { display: none; }
    .nav-inner { padding: 0 16px; }

    .hero { padding: 100px 16px 60px; min-height: auto; }
    .hero-sub { font-size: 16px; margin-bottom: 32px; }
    .hero-cards { margin-top: 40px; }
    .hero-card {
        width: 140px;
        height: 180px;
    }
    .hero-card-inner { padding: 16px 14px; }
    .hero-card h3 { font-size: 13px; }
    .hero-card p { font-size: 11px; }
    .hero-card-tag { font-size: 9px; }
    .hero-card-2 { margin-left: -30px; }
    .hero-card-3 { margin-left: -30px; }
    .hero-card-4 { margin-left: -30px; }

    .steps { flex-direction: column; align-items: center; }
    .step { max-width: 100%; }
    .step-number { font-size: 56px; }
    .step-connector { padding: 0; transform: rotate(90deg); }

    .bento { grid-template-columns: 1fr; }
    .bento-card { padding: 28px 24px; }
    .bento-card h3 { font-size: 21px; }

    .demo-carousel { gap: 10px; }
    .demo-card { flex: 0 0 150px; height: 200px; padding: 16px 14px; }
    .demo-card h4 { font-size: 14px; }
    .demo-card-cover h4 { font-size: 15px; }

    .platforms { flex-direction: column; align-items: center; gap: 32px; }
    .platform-square   { width: 200px; height: 200px; }
    .platform-portrait { width: 200px; height: 250px; }
    .platform-story    { width: 160px; height: 284px; }

    .cta-section { padding: 80px 0; }

    .footer-inner { flex-direction: column; gap: 16px; text-align: center; }

    .btn-lg { font-size: 16px; padding: 14px 32px; }
}

/* Small mobile */
@media (max-width: 420px) {
    .hero-card { width: 120px; height: 155px; }
    .hero-card h3 { font-size: 12px; }
    .hero-card p { display: none; }
    .hero-card-2 { margin-left: -24px; }
    .hero-card-3 { margin-left: -24px; }
    .hero-card-4 { margin-left: -24px; }
}
