/* =============================================
   SAGLAYICI PANEL — RETRO SMM THEME
   Colors: #2673B2 (primary blue) + White
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Poppins:wght@500;600;700;800;900&display=swap');

/* Custom Retro Scrollbar */
::-webkit-scrollbar {
  width: 12px;
  background-color: var(--white);
}
::-webkit-scrollbar-track {
  border-left: 3px solid var(--primary);
  background-color: var(--off-white);
}
::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border: 3px solid var(--white);
  border-radius: 0;
  box-shadow: inset -2px -2px 0 var(--primary-darker), inset 2px 2px 0 rgba(255,255,255,0.4);
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary-dark);
}

:root {
  --primary:        #2673B2;
  --primary-dark:   #1a5a93;
  --primary-darker: #124478;
  --primary-light:  #3a8fd4;
  --primary-pale:   #dbeeff;
  --accent:         #f97316;
  --white:          #ffffff;
  --off-white:      #f4f8fd;
  --bg:             #eaf3fb;
  --text-dark:      #0d1b2e;
  --text-mid:       #2c4a6e;
  --text-muted:     #6b8aad;
  --border:         #b8d5ef;
  --shadow-sm:      0 2px 0 #1a5a93;
  --shadow-md:      0 4px 0 #1a5a93;
  --shadow-lg:      0 6px 0 #124478;
  --font:           'Inter', sans-serif;
  --font-head:      'Poppins', sans-serif;

  /* Retro pixel-border radius values */
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text-dark);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  /* Retro pixel grid background */
  background-image:
    linear-gradient(rgba(38, 115, 178, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 115, 178, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  animation: gridScroll 20s linear infinite;
}

@keyframes gridScroll {
  from { background-position: 0 0; }
  to   { background-position: 32px 32px; }
}

main { flex: 1; padding-bottom: 3rem; }
a { text-decoration: none; }

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.d-flex            { display: flex; }
.align-items-center{ align-items: center; }
.ms-auto           { margin-left: auto; }
.mt-3              { margin-top: 1rem; }
.mt-4              { margin-top: 2rem; }
.mb-4              { margin-bottom: 2rem; }
.mb-5              { margin-bottom: 3rem; }
.gap-3             { gap: 1rem; }
.text-center       { text-align: center; }

/* =============================================
   RETRO DECORATIVE RULE
   ============================================= */
.retro-rule {
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary) 0px, var(--primary) 8px,
    var(--white) 8px, var(--white) 16px
  );
}

/* =============================================
   HEADER
   ============================================= */
.header {
  background: var(--white);
  border-bottom: 3px solid var(--primary);
  box-shadow: 0 4px 0 var(--primary-dark);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0;
}

.logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
}

/* Retro nav pills */
.btn-go-panel {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.6rem 1.4rem;
  border: 2px solid var(--primary-darker);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-sm);
  transition: transform 0.08s ease, box-shadow 0.08s ease, background-color 0.12s;
  letter-spacing: 0.3px;
}

.btn-go-panel:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 0 var(--primary-darker);
}

.btn-go-panel:active {
  transform: translateY(2px);
  box-shadow: none;
}


/* =============================================
   HERO BANNER — RETRO CARD
   ============================================= */
.hero-section {
  padding: 2.5rem 0 0;
}

.hero-banner {
  background-color: var(--primary);
  background-image: radial-gradient(circle at bottom right, rgba(255,255,255,0.1) 0%, transparent 70%);
  border: 3px solid var(--primary-darker);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg), 0 0 0 6px rgba(38,115,178,0.12);
  padding: 3rem 3.5rem;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 340px;
}

/* Görsel tüm hero'yu kaplıyor */
.hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('hero-image.png');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}





.hero-content {
  position: relative;
  z-index: 10;
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: var(--r-sm);
  padding: 0.3rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.hero-content h1 span {
  color: rgba(255,255,255,0.7);
  font-weight: 700;
}

.hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Retro primary CTA */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--white);
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.8rem 1.8rem;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: var(--r-sm);
  box-shadow: 0 5px 0 rgba(0,0,0,0.2);
  transition: transform 0.08s ease, box-shadow 0.08s ease, background-color 0.12s;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 rgba(0,0,0,0.2);
  background: #f0f8ff;
}

.btn-hero-primary:active {
  transform: translateY(3px);
  box-shadow: none;
}

/* Retro ghost CTA */
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 1.6rem;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: var(--r-sm);
  box-shadow: 0 5px 0 rgba(0,0,0,0.15);
  transition: transform 0.08s ease, box-shadow 0.08s ease, background-color 0.12s;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
  box-shadow: 0 7px 0 rgba(0,0,0,0.15);
}

.btn-hero-ghost:active {
  transform: translateY(3px);
  box-shadow: none;
}

/* Retro Hero Badges Group */
.retro-badge-group {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10%;
  width: 260px;
  pointer-events: none;
  z-index: 5;
}

.retro-hero-badge {
  position: absolute;
  background: var(--white);
  color: var(--text-dark);
  border: 3px solid var(--primary-darker);
  border-radius: var(--r-md);
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.82rem;
  box-shadow: 4px 4px 0 var(--primary-darker);
  pointer-events: none;
  white-space: nowrap;
}

.retro-hero-badge i {
  font-size: 1.05rem;
}

/* Individual badge variations and animations */
.badge-like {
  top: 45px;
  left: -20px;
  transform: rotate(-8deg);
  animation: badgeFloat1 3.5s ease-in-out infinite;
}
.badge-like i {
  color: #ef4444; /* red heart */
}

.badge-follow {
  top: 135px;
  left: 30px;
  transform: rotate(6deg);
  animation: badgeFloat2 4.2s ease-in-out infinite;
}
.badge-follow i {
  color: var(--primary); /* blue user icon */
}

.badge-comment {
  top: 220px;
  left: -10px;
  transform: rotate(-5deg);
  animation: badgeFloat3 3.8s ease-in-out infinite;
}
.badge-comment i {
  color: #10b981; /* green comment bubble */
}

/* Floating Animations */
@keyframes badgeFloat1 {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50%       { transform: rotate(-5deg) translateY(-8px); }
}

@keyframes badgeFloat2 {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50%       { transform: rotate(3deg) translateY(-10px); }
}

@keyframes badgeFloat3 {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  50%       { transform: rotate(-8deg) translateY(-6px); }
}

/* Hero visual — background image, no separate element needed */
.hero-visual { display: none; }
.hero-img { display: none; }

/* =============================================
   STATS STRIP — RETRO SCOREBOARD
   ============================================= */
.stats-strip {
  background: var(--white);
  border: 6px double var(--primary);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  margin: 2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-color: var(--border);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  border-right: 2px solid var(--primary-pale);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -1px;
  /* Retro LED display look */
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-top: 0.35rem;
  text-align: center;
}

/* =============================================
   PLATFORM GRID — RETRO BUTTON CARDS
   ============================================= */
.section-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.section-heading h2 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.3px;
  text-transform: uppercase;
}

.section-heading-line {
  flex: 1;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary) 0px, var(--primary) 6px,
    transparent 6px, transparent 10px
  );
  border-radius: 2px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}

@media (max-width: 1024px) {
  .platform-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 640px) {
  .platform-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 420px) {
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1.1rem 0.5rem;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: 0 3px 0 var(--border);
  transition: all 0.12s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.platform-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--p-color, var(--primary));
}

.platform-card:hover {
  border-color: var(--p-color, var(--primary));
  transform: translateY(-3px);
  box-shadow: 0 6px 0 color-mix(in srgb, var(--p-color, var(--primary)) 40%, #000 60%);
}

.platform-card:active {
  transform: translateY(0);
  box-shadow: none;
}

.platform-card i {
  font-size: 2rem;
  color: var(--p-color, var(--primary));
  transition: transform 0.2s;
}

.platform-card:hover i {
  transform: scale(1.15);
}

.platform-card span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =============================================
   FEATURES ROW — RETRO PANEL CARDS
   ============================================= */
.features-section {
  margin: 2.5rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
}

.feature-card {
  background: var(--white);
  border: 4px double var(--primary);
  border-radius: var(--r-md);
  padding: 1.5rem 1.2rem;
  box-shadow: 0 3px 0 var(--border);
  transition: all 0.15s;
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 1rem; right: 1rem;
  height: 3px;
  background: var(--primary);
  border-radius: 0 0 3px 3px;
}

.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 0 var(--primary-dark);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-pale);
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1rem;
  box-shadow: 0 2px 0 var(--border);
}

.feature-card h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   HOW IT WORKS — RETRO STEP CARDS
   ============================================= */
.steps-section {
  margin: 2.5rem 0;
  padding: 2.5rem;
  background: var(--primary);
  border: 3px solid var(--primary-darker);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.steps-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px,
    transparent 1px, transparent 4px
  );
  pointer-events: none;
}

.steps-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.steps-heading h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.3px;
  margin-bottom: 0.4rem;
}

.steps-heading p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
}

.step-card {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: var(--r-md);
  padding: 1.5rem 1rem;
  text-align: center;
  position: relative;
  backdrop-filter: blur(4px);
}

.step-number {
  width: 52px;
  height: 52px;
  background: var(--white);
  color: var(--primary);
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 2px solid rgba(255,255,255,0.5);
  box-shadow: 0 3px 0 rgba(0,0,0,0.2);
}

.step-card h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 0 var(--border);
  margin: 2.5rem 0;
}

.faq-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.faq-heading h2 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: -0.3px;
  margin-bottom: 0.4rem;
}

.faq-heading p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: start;
}

@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
}

.faq-item {
  border: 4px double var(--border);
  border-radius: var(--r-md);
  box-shadow: 0 2px 0 var(--border);
  overflow: hidden;
  transition: border-color 0.15s;
}

.faq-item[open] {
  border-color: var(--primary);
  box-shadow: 0 2px 0 var(--primary-dark);
}

.faq-item[open] .faq-content {
  animation: faqFadeIn 0.25s ease-out;
}

@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.3rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--off-white);
  border-bottom: 2px solid transparent;
  transition: all 0.15s;
}

.faq-item[open] summary {
  background: var(--primary-pale);
  border-bottom-color: var(--border);
  color: var(--primary);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary i {
  font-size: 0.85rem;
  color: var(--primary);
  transition: transform 0.25s;
  flex-shrink: 0;
}

.faq-item[open] summary i {
  transform: rotate(180deg);
}

.faq-content {
  padding: 1.1rem 1.3rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================
   CTA SECTION — RETRO PROMO BOX
   ============================================= */
.cta-section {
  margin: 2.5rem 0;
  background: var(--white);
  border: 3px solid var(--primary);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Retro diagonal stripe decoration */
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  right: 0;
  width: 180px;
  background: repeating-linear-gradient(
    -45deg,
    var(--primary-pale) 0px, var(--primary-pale) 6px,
    transparent 6px, transparent 12px
  );
  pointer-events: none;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--primary-pale);
  color: var(--primary);
  border: 2px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.3rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.cta-section h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin-bottom: 0.8rem;
}

.cta-section h2 strong { color: var(--primary); }

.cta-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.8rem;
  max-width: 440px;
}

.cta-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.btn-cta-main {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border: 2px solid var(--primary-darker);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-md);
  transition: transform 0.08s ease, box-shadow 0.08s ease, background-color 0.12s;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.btn-cta-main:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--primary-darker);
}

.btn-cta-main:active {
  transform: translateY(2px);
  box-shadow: none;
}

.btn-cta-line {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.85rem 1.4rem;
  border: 2px solid var(--primary);
  border-radius: var(--r-sm);
  transition: all 0.12s;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.btn-cta-line:hover {
  background: var(--primary-pale);
}

.cta-trust {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.cta-trust span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.cta-trust i { color: var(--primary); font-size: 0.85rem; }

/* Mosaic in CTA */
.cta-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  z-index: 1;
  position: relative;
}

.mosaic-item {
  width: 68px;
  height: 68px;
  background: var(--p-mc, var(--primary));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  border: 2px solid rgba(0,0,0,0.12);
  box-shadow: 0 3px 0 rgba(0,0,0,0.15);
  animation: mosaicPop 3.5s ease-in-out infinite;
  transition: transform 0.2s;
}

.mosaic-item:nth-child(1) { animation-delay: 0s; }
.mosaic-item:nth-child(2) { animation-delay: 0.3s; }
.mosaic-item:nth-child(3) { animation-delay: 0.6s; }
.mosaic-item:nth-child(4) { animation-delay: 0.9s; }
.mosaic-item:nth-child(5) { animation-delay: 1.2s; }
.mosaic-item:nth-child(6) { animation-delay: 1.5s; }
.mosaic-item:nth-child(7) { animation-delay: 1.8s; }
.mosaic-item:nth-child(8) { animation-delay: 2.1s; }
.mosaic-item:nth-child(9) { animation-delay: 2.4s; }

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

.mosaic-item:hover {
  transform: scale(1.15) rotate(4deg) !important;
  animation-play-state: paused;
}

/* =============================================
   FOOTER — RETRO PANEL
   ============================================= */
.footer {
  background: var(--primary);
  border-top: 4px solid var(--primary-darker);
  margin-top: auto;
}

.footer-inner {
  padding: 2.5rem 0 1.5rem;
}

.footer-top {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(255,255,255,0.15);
}

.footer-logo img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--r-sm);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.15s;
  box-shadow: 0 2px 0 rgba(0,0,0,0.2);
}

.social-btn:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 0 rgba(0,0,0,0.2);
}

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

.footer-bottom p {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
}

/* =============================================
   RESPONSIVE TWEAKS
   ============================================= */
@media (max-width: 900px) {
  .hero-banner {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
    min-height: unset;
  }
  .hero-banner::after {
    display: none;
  }
  .retro-badge-group {
    display: none;
  }
  .hero-visual { display: none; }
  .hero-content h1 { font-size: 2rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 2px solid var(--primary-pale); }
  .stat-item:nth-child(odd) { border-right: 2px solid var(--primary-pale); }
  .stat-item:last-child { border-bottom: none; }

  .cta-section {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }
  .cta-section::before { display: none; }
  .cta-mosaic { justify-self: center; }
}

@media (max-width: 600px) {
  .hero-content h1 { font-size: 1.7rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-section { padding: 1.5rem; }
  .faq-section { padding: 1.5rem; }
  .cta-section h2 { font-size: 1.5rem; }
}
