/* ============================================================
   Homefy — Landing Page Styles
   Light theme, Manrope font, emerald accent
   ============================================================ */

/* ---------- Reset & Custom Properties ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #F8FAFB;
  --white: #FFFFFF;
  --emerald: #10B981;
  --emerald-dark: #059669;
  --emerald-light: #34D399;
  --emerald-pale: #ECFDF5;
  --text: #1A202C;
  --text-sec: #475569;
  --text-muted: #94A3B8;
  --border: rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.08);
  --radius: 16px;
  --nav-h: 72px;
  --container: 1120px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

.highlight {
  color: var(--emerald);
}

.section-h2 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 48px;
}

/* ---------- Pill badges ---------- */
.pill {
  display: inline-block;
  background: var(--emerald-pale);
  color: var(--emerald);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.pill-center {
  display: block;
  width: fit-content;
  margin: 0 auto 16px;
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  color: #fff;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--emerald);
  color: var(--emerald);
}

.btn-white {
  background: var(--white);
  color: var(--emerald-dark);
  font-weight: 600;
  border: none;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-outline-white:hover {
  border-color: #fff;
}

/* ---------- Animations ---------- */
.fade-el {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-el.active {
  opacity: 1;
  transform: none;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  background: rgba(248, 250, 251, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--emerald);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-accent {
  color: var(--emerald);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sec);
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: var(--emerald);
}

.nav-btn {
  background: var(--emerald);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-btn:hover {
  background: var(--emerald-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: rgba(16, 185, 129, 0.15);
  top: -120px;
  right: -80px;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: rgba(99, 102, 241, 0.1);
  bottom: -100px;
  left: -60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  text-align: left;
}

.hero-h1 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.12;
  margin-bottom: 20px;
}

.hero-p {
  color: var(--text-sec);
  font-size: 18px;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 28px;
}

.hero-btns {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-bottom: 0;
}

.hero-trust {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.hero-trust p {
  font-size: 14px;
  color: var(--text-sec);
}

.hero-trust strong {
  color: var(--text);
  font-weight: 700;
}

.trust-avatars {
  display: flex;
}

.trust-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  margin-left: -8px;
}

.trust-av:first-child {
  margin-left: 0;
}

/* ---------- Hero Dashboard Card ---------- */
.hero-card {
  position: relative;
}

.dash-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 24px;
  max-width: 380px;
  margin: 0 auto;
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sec);
  margin-bottom: 8px;
}

.dash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
}

.dash-dot.green {
  background: var(--emerald);
}

.dash-service {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.dash-service-icon {
  width: 44px;
  height: 44px;
  background: var(--emerald-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-service strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.dash-service small {
  font-size: 13px;
  color: var(--text-muted);
}

.dash-badge {
  margin-left: auto;
  background: var(--emerald-pale);
  color: var(--emerald);
  font-size: 12px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

.dash-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 0;
}

.dash-detail {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--text-muted);
  font-size: 13px;
}

.dash-detail svg {
  flex-shrink: 0;
}

.dash-progress {
  padding-top: 4px;
}

.dash-progress small {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

.dash-progress-bar {
  height: 6px;
  background: #E2E8F0;
  border-radius: 3px;
  overflow: hidden;
}

.dash-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-light));
  border-radius: 3px;
}

/* ---------- Floating cards ---------- */
.float-card {
  position: absolute;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-radius: 12px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  gap: 6px;
  align-items: center;
  color: var(--text);
  z-index: 2;
}

.float-card-1 {
  top: -10px;
  right: 20px;
}

.float-card-2 {
  bottom: 30px;
  left: -20px;
}

.float-rating {
  color: #F59E0B;
}

/* ============================================================
   PROBLEMS
   ============================================================ */
.problems {
  padding: 80px 0;
  background: var(--bg);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.problem-emoji {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 1;
}

.problem-card h3 {
  color: var(--text);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}

.problem-card p {
  color: var(--text-sec);
  font-size: 14px;
  line-height: 1.65;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-card h3 {
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--text-sec);
  font-size: 14px;
  line-height: 1.65;
}

.service-tag {
  display: inline-block;
  background: var(--emerald-pale);
  color: var(--emerald);
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  padding: 4px 14px;
  margin-top: 14px;
}

/* ============================================================
   HOW IT WORKS (Steps)
   ============================================================ */
.how-it-works {
  padding: 80px 0;
  background: var(--bg);
}

.steps {
  display: flex;
  justify-content: center;
  gap: 0;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.steps-connector {
  position: absolute;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-light));
  top: 30px;
  left: 15%;
  right: 15%;
  z-index: 0;
  border-radius: 2px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.step h3 {
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  margin-top: 18px;
  margin-bottom: 6px;
}

.step p {
  color: var(--text-sec);
  font-size: 14px;
  max-width: 200px;
  line-height: 1.55;
}

/* ============================================================
   TRUST
   ============================================================ */
.trust {
  padding: 80px 0;
  background: var(--emerald-pale);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.trust-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.trust-ico {
  width: 44px;
  height: 44px;
  background: var(--emerald-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.trust-card h3 {
  color: var(--text);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}

.trust-card p {
  color: var(--text-sec);
  font-size: 14px;
  line-height: 1.65;
}

/* ============================================================
   TESTIMONIALS (horizontal scroll)
   ============================================================ */
.testimonials {
  padding: 80px 0;
}

.testimonials .container {
  margin-bottom: 40px;
}

.testi-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--emerald-light) transparent;
}

.testi-scroll::-webkit-scrollbar {
  height: 6px;
}

.testi-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.testi-scroll::-webkit-scrollbar-thumb {
  background: var(--emerald-light);
  border-radius: 3px;
}

.testi-track {
  display: flex;
  gap: 20px;
  padding: 0 max(24px, calc((100vw - var(--container)) / 2));
}

.testi-card {
  min-width: 340px;
  max-width: 340px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.testi-stars {
  color: #F59E0B;
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testi-card p {
  color: var(--text-sec);
  font-size: 15px;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  gap: 12px;
  align-items: center;
}

.testi-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.testi-author span {
  color: var(--text-muted);
  font-size: 12px;
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  padding: 0;
}

.cta-bg {
  background: linear-gradient(135deg, #059669, #10B981, #34D399);
  padding: 80px 0;
}

.cta-content {
  text-align: center;
}

.cta-content h2 {
  font-family: 'Manrope', system-ui, sans-serif;
  color: #fff;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  margin-bottom: 32px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1A202C;
  padding: 64px 0 0;
  color: #fff;
}

.footer .logo {
  color: #fff;
  margin-bottom: 16px;
}

.footer .logo-accent {
  color: var(--emerald);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.65;
  max-width: 320px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--emerald);
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bar p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
}

.footer-social a:hover {
  color: var(--emerald);
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-card {
    display: none;
  }

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

  .footer-about {
    grid-column: 1 / -1;
  }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  /* Hamburger */
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 96px 32px 32px;
    gap: 24px;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
    transition: right 0.35s ease;
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    font-size: 16px;
  }

  .nav-btn {
    margin-top: 8px;
    font-size: 15px !important;
    padding: 12px 28px;
  }

  /* Sections */
  .problems-grid {
    grid-template-columns: 1fr;
  }

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

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

  /* Steps vertical */
  .steps {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .steps-connector {
    display: none;
  }

  .step {
    flex: none;
    width: 100%;
    max-width: 280px;
  }

  /* Testimonials */
  .testi-card {
    min-width: 280px;
    max-width: 280px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .hero-p {
    font-size: 16px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .step-icon {
    width: 48px;
    height: 48px;
  }

  .step-icon svg {
    width: 22px;
    height: 22px;
  }

  .section-h2 {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
    margin-bottom: 36px;
  }

  .cta-content h2 {
    font-size: clamp(1.3rem, 6vw, 2rem);
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .cta-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .problem-card {
    padding: 24px;
  }

  .service-card {
    padding: 22px;
  }

  .trust-card {
    padding: 22px;
  }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .fade-el {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-blobs,
  .blob {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .navbar {
    position: static;
  }

  body {
    background: #fff;
  }
}

/* === Cube AI Badge === */
.cube-ai-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.cube-ai-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px 8px 12px;
    border-radius: 100px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.cube-ai-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(6,182,212,0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}
.cube-ai-link:hover::before { opacity: 1; }
.cube-ai-link:hover {
    border-color: rgba(139,92,246,0.3);
    box-shadow: 0 0 30px rgba(139,92,246,0.15), 0 0 60px rgba(6,182,212,0.08);
    transform: translateY(-1px);
}
.cube-3d {
    width: 20px;
    height: 20px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(-25deg) rotateY(30deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.cube-ai-link:hover .cube-3d {
    transform: rotateX(-25deg) rotateY(210deg);
}
.cube-face {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1.5px solid rgba(139,92,246,0.6);
    border-radius: 3px;
}
.cube-face.front  { transform: translateZ(10px); background: rgba(139,92,246,0.15); }
.cube-face.back   { transform: translateZ(-10px) rotateY(180deg); background: rgba(6,182,212,0.1); }
.cube-face.top    { transform: rotateX(90deg) translateZ(10px); background: rgba(139,92,246,0.2); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(10px); background: rgba(6,182,212,0.05); }
.cube-face.left   { transform: rotateY(-90deg) translateZ(10px); background: rgba(6,182,212,0.1); }
.cube-face.right  { transform: rotateY(90deg) translateZ(10px); background: rgba(139,92,246,0.1); border-color: rgba(6,182,212,0.5); }
.cube-ai-made {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}
.cube-ai-name {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 700;
    background: linear-gradient(135deg, #8B5CF6, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
}
.cube-ai-arrow {
    width: 14px;
    height: 14px;
    color: rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}
.cube-ai-link:hover .cube-ai-arrow {
    color: #8B5CF6;
    transform: translate(2px, -2px);
}
