/* ============================================
   Happy App Studio — Shared Styles
   Two themes: light (vitrine) + dark (app/privacy)
   Mobile-first, responsive
   ============================================ */

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

html {
  font-family: 'Outfit', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Animations --- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================
   LIGHT THEME — App Pages & Privacy Pages
   ============================================ */

.app-page,
.privacy-page {
  --bg: #FDFBF7;
  --bg-secondary: #f5f0e8;
  --text: #2D3436;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --accent: #7c3aed;
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --color-title: var(--text);
  --color-body: var(--text-muted);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
}

/* --- Background Image --- */
.app-page-bg {
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
}

.app-page-bg::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(12, 12, 15, 0.75) 0%,
    rgba(12, 12, 15, 0.6) 50%,
    rgba(12, 12, 15, 0.8) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.app-page-bg .lang-switcher,
.app-page-bg .app-container,
.app-page-bg .app-footer {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .app-page-bg {
    background-attachment: scroll;
  }
}

/* --- Language Switcher (Shared dropdown) --- */
.lang-switcher {
  position: relative;
  display: inline-block;
  z-index: 100;
}

.lang-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-secondary, rgba(0,0,0,0.03));
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lang-trigger:hover {
  border-color: var(--accent, #7c3aed);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.08);
}

.lang-trigger .fi {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
  object-fit: cover;
}

.lang-trigger-code {
  letter-spacing: 0.5px;
}

.lang-chevron {
  opacity: 0.5;
  transition: transform 0.2s;
}

.lang-switcher.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 180px;
  padding: 6px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg, #fff);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.96);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}

.lang-option:hover {
  background: var(--bg-secondary, rgba(124, 58, 237, 0.06));
  color: var(--text);
}

.lang-option.active {
  color: var(--accent, #7c3aed);
  font-weight: 600;
  background: rgba(124, 58, 237, 0.08);
}

.lang-option .fi {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.12);
  flex-shrink: 0;
  object-fit: cover;
}

.lang-option-name {
  flex: 1;
}

/* Positioning for app pages (centered top) */
.app-page .lang-switcher {
  display: flex;
  justify-content: flex-end;
  padding: 16px 20px;
  animation: fadeIn 0.4s ease;
}

.app-page .lang-dropdown {
  right: 0;
}

/* Positioning for inline (privacy) */
.lang-switcher-inline {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.lang-switcher-inline .lang-dropdown {
  right: auto;
  left: 50%;
  transform: translateX(-50%) translateY(-8px) scale(0.96);
}

.lang-switcher-inline.open .lang-dropdown {
  transform: translateX(-50%) translateY(0) scale(1);
}

/* --- App Container --- */
.app-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px 24px 60px;
  text-align: center;
  animation: fadeUp 0.6s ease;
}

/* --- WIP Badge --- */
.wip-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  margin-bottom: 24px;
}

/* --- App Icon --- */
.app-icon {
  width: 128px;
  height: 128px;
  margin: 0 auto 24px;
}

/* --- App Text --- */
.app-title {
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  color: var(--color-title);
}

.app-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-body);
  margin-bottom: 16px;
}

.app-description {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-body);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 32px;
}

/* --- Store Badges --- */
.store-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.store-badge {
  display: inline-block;
  transition: transform 0.2s, opacity 0.2s;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.store-badge:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.store-badge svg {
  display: block;
}

/* --- Screenshots --- */
.screenshots-section {
  margin-bottom: 40px;
}

.section-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
}

.screenshots-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.screenshots-scroll::-webkit-scrollbar {
  height: 4px;
}

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

.screenshots-scroll::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

.screenshot-img {
  flex-shrink: 0;
  width: 220px;
  height: auto;
  border-radius: 16px;
  scroll-snap-align: start;
  border: 1px solid var(--border);
}

/* --- Legal Links --- */
.legal-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.privacy-link {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.privacy-link:hover {
  color: var(--accent);
}

/* --- App Footer --- */
.app-footer {
  text-align: center;
  padding: 32px 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-link {
  color: var(--accent);
  transition: opacity 0.2s;
}

.footer-link:hover {
  opacity: 0.8;
}

/* ============================================
   PRIVACY / TERMS PAGE
   ============================================ */

.privacy-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px 24px 60px;
  animation: fadeUp 0.6s ease;
}

.back-link {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--accent);
}

.privacy-header {
  text-align: center;
  margin-bottom: 24px;
}

.privacy-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin: 0 auto 16px;
}

.privacy-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.privacy-app-name {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* (privacy lang bar replaced by .lang-switcher-inline) */

.privacy-content {
  line-height: 1.8;
  font-weight: 300;
}

.privacy-content h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 28px 0 12px;
  color: var(--text);
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content p {
  color: var(--text-muted);
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.privacy-content a {
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.privacy-content a:hover {
  border-bottom-color: var(--accent);
}

.privacy-updated {
  margin-top: 40px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================
   LIGHT THEME — Vitrine Page
   ============================================ */

.vitrine-page {
  --bg: #FDFBF7;
  --text: #2D3436;
  --text-muted: #6b7280;
  --accent: #6C5CE7;
  --border: #e5e7eb;

  background-color: var(--bg);
  color: var(--text);
  min-height: 100vh;
  font-family: 'Nunito', sans-serif;
  position: relative;
}

.vitrine-main {
  position: relative;
  z-index: 1;
}

.vitrine-page h1,
.vitrine-page h2,
.vitrine-page h3 {
  font-family: 'Fredoka', sans-serif;
}

/* --- Animations (vitrine-specific) --- */
@keyframes float {
  0%   { transform: translate(0px, 0px) scale(1); }
  33%  { transform: translate(30px, -50px) scale(1.1); }
  66%  { transform: translate(-20px, 20px) scale(0.9); }
  100% { transform: translate(0px, 0px) scale(1); }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-3deg); }
  50%      { transform: rotate(3deg); }
}

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

/* --- Blobs (full page background) --- */
.blobs-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.35;
  border-radius: 50%;
  animation: float 10s infinite ease-in-out;
  mix-blend-mode: multiply;
}

.blob-delay {
  animation-delay: 5s;
}

.blob-yellow {
  width: 600px;
  height: 600px;
  background: #F4D35E;
  top: -100px;
  left: -100px;
}

.blob-blue {
  width: 600px;
  height: 600px;
  background: #59A5D8;
  bottom: -100px;
  right: -100px;
}

.blob-pink {
  width: 400px;
  height: 400px;
  background: #E86A92;
  top: 40%;
  right: 10%;
  animation: float 10s infinite ease-in-out, pulse 4s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { opacity: 0.35; }
  50%      { opacity: 0.55; }
}

/* --- Floating Header --- */
.header-float-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding-top: 1.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  pointer-events: none;
}

.vitrine-header {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  width: 100%;
  max-width: 72rem;
  transition: all 0.5s ease-out;
  animation: fadeIn 0.4s ease;
}

.vitrine-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
  max-width: 64rem;
}

.header-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.header-logo-img {
  height: 3rem;
  width: 3rem;
  object-fit: contain;
  border-radius: 0.75rem;
  transition: transform 0.3s;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.header-logo:hover .header-logo-img {
  transform: rotate(6deg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .header-actions {
    gap: 1rem;
  }

  .header-logo-img {
    height: 3.5rem;
    width: 3.5rem;
  }
}

/* Vitrine lang switcher overrides */
.vitrine-page .lang-trigger {
  background: rgba(0, 0, 0, 0.04);
  border-color: transparent;
}

.vitrine-page .lang-trigger:hover {
  background: rgba(0, 0, 0, 0.08);
}

.vitrine-page .lang-dropdown {
  background: #fff;
  border-color: var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.vitrine-page .lang-option:hover {
  background: rgba(108, 92, 231, 0.06);
}

/* Contact buttons */
.header-contact-btn {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.3s;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-contact-btn:hover {
  background: #F27D22;
  transform: translateY(-2px);
}

.header-contact-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  padding: 0.625rem;
  border-radius: 9999px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.header-contact-mobile:hover {
  transform: scale(1.1);
}

@media (min-width: 640px) {
  .header-contact-btn {
    display: flex;
  }

  .header-contact-mobile {
    display: none;
  }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8rem;
  padding-bottom: 3rem;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  animation: fadeUp 0.6s ease;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #1f2937;
  line-height: 0.95;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.title-highlight {
  position: relative;
  display: inline-block;
  margin: 0 0.5rem;
  background: linear-gradient(to right, #F27D22, #E86A92, #8E7DBE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 5.5rem;
  }
}

/* --- Portfolio Section --- */
.portfolio-section {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 8rem;
  overflow: hidden;
}

.portfolio-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .portfolio-container {
    padding: 0 1.5rem;
  }
}

/* Portfolio heading */
.portfolio-heading {
  text-align: center;
  margin-bottom: 4rem;
}

.portfolio-heading-inner {
  display: inline-block;
  position: relative;
}

.portfolio-heading h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #1f2937;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .portfolio-heading h2 {
    font-size: 3.5rem;
  }
}

.heading-star-decoration {
  position: absolute;
  right: -2rem;
  top: -1.5rem;
  color: #F4D35E;
  animation: bounce-slow 2s infinite;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.heading-sparkle-decoration {
  position: absolute;
  left: -1.5rem;
  bottom: 0;
  color: #59A5D8;
  animation: pulse 4s infinite ease-in-out;
}

.heading-underline {
  position: absolute;
  width: 100%;
  height: 1rem;
  bottom: -0.5rem;
  left: 0;
  color: #F27D22;
  opacity: 0.8;
}

/* --- App Cards Grid --- */
.apps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .apps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .apps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- App Card --- */
.app-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 2.5rem;
  padding: 1.25rem;
  border: 2px solid transparent;
  transition: all 0.5s ease-out;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.app-card:hover {
  border-color: var(--app-color);
  transform: translateY(-12px);
  box-shadow: 12px 12px 0px 0px rgba(0, 0, 0, 0.05);
}

.wip-card {
  border-style: dashed;
  border-color: #e5e7eb;
}

.wip-card:hover {
  border-color: var(--app-color);
  border-style: dashed;
}

/* Card image area */
.card-image-area {
  position: relative;
  height: 18rem;
  width: 100%;
  border-radius: 2rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  transition: background-color 0.5s;
}

.card-image-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  filter: blur(48px);
  transition: transform 0.7s;
}

.app-card:hover .card-image-glow {
  transform: scale(1.5);
}

.card-app-icon {
  position: relative;
  z-index: 10;
  width: 12rem;
  height: 12rem;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
  transition: all 0.5s;
}

.app-card:hover .card-app-icon {
  transform: scale(1.1) rotate(6deg);
}

.card-app-icon-wip {
  filter: grayscale(0.3) drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.app-card:hover .card-app-icon-wip {
  filter: grayscale(0) drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
  transform: scale(1.05);
}

/* Card badge */
.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 20;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.app-badge-tag {
  background: rgba(255, 255, 255, 0.9);
  color: #374151;
}

.soon-badge-tag {
  background: var(--app-color);
  color: #fff;
  animation: pulse 4s infinite ease-in-out;
}

/* Card content */
.card-content {
  padding: 0 0.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.card-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.875rem;
  font-weight: 900;
  color: #1f2937;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.app-card:hover .card-title {
  color: var(--app-color);
}

.card-description {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.625;
  margin-bottom: 2rem;
  padding: 0 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem;
  border-radius: 1rem;
  background: #f9fafb;
  color: #374151;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
  margin-top: auto;
}

.app-card:hover .card-cta {
  background: var(--app-color);
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: scale(1.02);
}

.card-cta svg {
  transition: transform 0.3s;
}

.app-card:hover .card-cta svg {
  transform: translateX(4px);
}

.card-cta-disabled {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  border-radius: 1rem;
  background: #f3f4f6;
  color: #9ca3af;
  font-weight: 700;
  font-size: 1rem;
  cursor: not-allowed;
  border: 2px solid transparent;
  margin-top: auto;
}

/* --- WIP Section --- */
.wip-divider {
  border-top: 4px dashed rgba(229, 231, 235, 0.5);
  margin: 4rem 0 0;
  padding-top: 2.5rem;
}

.wip-heading {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wip-icon-wrap {
  background: rgba(142, 125, 190, 0.1);
  padding: 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  animation: bounce-slow 2s infinite;
  color: #8E7DBE;
}

.wip-heading h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #374151;
}

@media (min-width: 768px) {
  .wip-heading h3 {
    font-size: 2.25rem;
  }
}

/* --- Vitrine Footer --- */
.vitrine-footer {
  position: relative;
  z-index: 1;
  background: linear-gradient(to bottom, transparent 0%, #6C5CE7 4rem);
  color: #fff;
  padding-top: 6rem;
  padding-bottom: 3rem;
  text-align: center;
}

.footer-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-contact-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-contact-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.footer-instagram-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 0.75rem;
  border-radius: 9999px;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-instagram-btn:hover {
  background: #E86A92;
  border-color: #E86A92;
  transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE — Small screens
   ============================================ */

@media (max-width: 380px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .app-title {
    font-size: 1.4rem;
  }

  .screenshot-img {
    width: 180px;
  }

  .card-content {
    padding: 0 0.25rem;
  }

  .card-app-icon {
    width: 8rem;
    height: 8rem;
  }

  .card-image-area {
    height: 14rem;
  }
}
