/**
 * Unione Partners
 */

/* ===== Hero Section ===== */
.hero-section {
  min-height: calc(100vh - var(--navbar-height));
  min-height: calc(100svh - var(--navbar-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  margin-top: var(--navbar-height);
}

.hero-content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.hero-titles { margin-bottom: 1.5rem; }

.hero-description {
  max-width: 42rem;
  margin: 0 auto 2rem;
}

@media (min-width: 640px) { .hero-description { margin-bottom: 3rem; } }

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
  }
}

.hero-buttons .btn { width: 100%; }

@media (min-width: 640px) { .hero-buttons .btn { width: auto; min-width: 240px; } }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) { .hero-stats { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .hero-stats { gap: 3rem; } }

.stat { text-align: center; padding: 0.5rem; }

.stat-value {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

@media (min-width: 640px) { .stat-value { font-size: var(--font-size-2xl); } }
@media (min-width: 1024px) { .stat-value { font-size: 2.25rem; } }

.stat-label {
  font-size: var(--font-size-xs);
  color: var(--muted-foreground);
}

@media (min-width: 640px) { .stat-label { font-size: var(--font-size-sm); } }

/* ===== Challenge Section ===== */
.challenge-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) { .challenge-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.challenge-content .heading-md { margin-bottom: 1rem; }

.puzzle-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) { .puzzle-container { justify-content: flex-end; } }

.puzzle-wrapper {
  max-width: 180px;
  width: 100%;
}

@media (min-width: 640px) { .puzzle-wrapper { max-width: 200px; } }
@media (min-width: 1024px) { .puzzle-wrapper { max-width: 280px; } }

.puzzle-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.puzzle-piece { opacity: 0; }
.puzzle-svg.animate .puzzle-piece { opacity: 1; }
.puzzle-piece-inner { transform-origin: center; }

.puzzle-svg.animate .piece-1 .puzzle-piece-inner {
  animation: puzzleEnterTL 0.8s var(--easing-bounce) 0.2s both, puzzleFloat1 6s ease-in-out 1.1s infinite;
}
.puzzle-svg.animate .piece-2 .puzzle-piece-inner {
  animation: puzzleEnterTR 0.8s var(--easing-bounce) 0.35s both, puzzleFloat2 7s ease-in-out 1.25s infinite;
}
.puzzle-svg.animate .piece-3 .puzzle-piece-inner {
  animation: puzzleEnterBL 0.8s var(--easing-bounce) 0.5s both, puzzleFloat3 5.5s ease-in-out 1.4s infinite;
}
.puzzle-svg.animate .piece-4 .puzzle-piece-inner {
  animation: puzzleEnterBR 0.8s var(--easing-bounce) 0.65s both, puzzleFloat4 6.5s ease-in-out 1.55s infinite;
}

@keyframes puzzleEnterTL { from { opacity: 0; transform: translate(-60px, -60px) rotate(-20deg); } to { opacity: 1; transform: translate(0, 0) rotate(0deg); } }
@keyframes puzzleEnterTR { from { opacity: 0; transform: translate(60px, -60px) rotate(20deg); } to { opacity: 1; transform: translate(0, 0) rotate(0deg); } }
@keyframes puzzleEnterBL { from { opacity: 0; transform: translate(-60px, 60px) rotate(-20deg); } to { opacity: 1; transform: translate(0, 0) rotate(0deg); } }
@keyframes puzzleEnterBR { from { opacity: 0; transform: translate(60px, 60px) rotate(20deg); } to { opacity: 1; transform: translate(0, 0) rotate(0deg); } }

@keyframes puzzleFloat1 { 0%,100%{ transform: translate(0,0);} 50%{ transform: translate(-2px,-3px);} }
@keyframes puzzleFloat2 { 0%,100%{ transform: translate(0,0);} 50%{ transform: translate(2px,-2px);} }
@keyframes puzzleFloat3 { 0%,100%{ transform: translate(0,0);} 50%{ transform: translate(-3px,2px);} }
@keyframes puzzleFloat4 { 0%,100%{ transform: translate(0,0);} 50%{ transform: translate(3px,1px);} }

/* ===== Solution Section (Dashboard) ===== */
.dashboard-mockup { max-width: 64rem; margin: 0 auto; }

.dashboard-frame {
  background-color: var(--foreground);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.dashboard-inner {
  background-color: var(--background);
  border-radius: var(--radius);
  overflow: hidden;
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background-color: hsla(0, 0%, 96%, 0.5);
  border-bottom: 1px solid var(--border);
}

.browser-dots { display: flex; gap: 0.5rem; }

.dot { width: 0.75rem; height: 0.75rem; border-radius: var(--radius-full); }
.dot.red { background-color: hsl(0, 70%, 65%); }
.dot.yellow { background-color: hsl(45, 90%, 60%); }
.dot.green { background-color: hsl(120, 50%, 55%); }

.browser-url { flex: 1; margin: 0 1rem; text-align: center; }

.browser-url span {
  display: inline-block;
  background-color: var(--secondary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  color: var(--muted-foreground);
}

.dashboard-content { padding: 1rem; }
@media (min-width: 640px) { .dashboard-content { padding: 1.5rem; } }
@media (min-width: 1024px) { .dashboard-content { padding: 2rem; } }

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) { .dashboard-stats { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }

.dashboard-stat {
  background-color: hsla(0, 0%, 96%, 0.5);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.75rem;
}

@media (min-width: 1024px) { .dashboard-stat { padding: 1rem; } }

.stat-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.stat-header span { font-size: var(--font-size-xs); color: var(--muted-foreground); }
.stat-icon { width: 1rem; height: 1rem; color: var(--muted-foreground); }
@media (min-width: 1024px) { .stat-icon { width: 1.25rem; height: 1.25rem; } }

.stat-value-lg { font-size: var(--font-size-xl); font-weight: 700; color: var(--foreground); margin-bottom: 0.25rem; }
@media (min-width: 1024px) { .stat-value-lg { font-size: var(--font-size-2xl); } }

.stat-change { font-size: var(--font-size-xs); font-weight: 500; }
.stat-change.positive { color: hsl(140, 70%, 40%); }

.chart-area {
  background-color: hsla(0, 0%, 96%, 0.3);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem;
}

@media (min-width: 1024px) { .chart-area { padding: 1.5rem; } }

.chart-header { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
@media (min-width: 640px) { .chart-header { flex-direction: row; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; } }

.chart-title { font-size: var(--font-size-sm); font-weight: 600; color: var(--foreground); }
.chart-legend { display: flex; gap: 1rem; }
.legend-item { display: flex; align-items: center; gap: 0.5rem; font-size: var(--font-size-xs); color: var(--muted-foreground); }
.legend-dot { width: 0.5rem; height: 0.5rem; border-radius: var(--radius-full); }
.legend-dot.dark { background-color: var(--foreground); }
.legend-dot.light { background-color: var(--muted-foreground); }

.chart-bars { display: flex; align-items: flex-end; gap: 0.5rem; height: 7rem; }
@media (min-width: 1024px) { .chart-bars { gap: 0.75rem; height: 9rem; } }

.chart-bar {
  flex: 1;
  background-color: var(--foreground);
  border-radius: var(--radius-sm);
  height: 0;
  opacity: 0;
  transform: scaleX(0.8) scaleY(1);
  transform-origin: bottom center;
  transition: height 1s var(--easing-bounce), opacity 0.25s ease, transform 0.25s ease, background-color 0.2s ease;
  transition-delay: var(--delay, 0s);
  cursor: pointer;
}

.chart-bars.animated .chart-bar { height: var(--height); opacity: 1; transform: scaleX(1) scaleY(1); }
.chart-bars.animated .chart-bar:hover { background-color: var(--accent); transform: scaleX(1.15) scaleY(1.1); transition-delay: 0s; }
.chart-bars.animated .chart-bar:active { transform: scaleX(1) scaleY(0.95); }

/* ===== Advertisers Section ===== */
.advertisers-grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .advertisers-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.features-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.feature-item { display: flex; gap: 0.75rem; }
@media (min-width: 640px) { .feature-item { gap: 1rem; } }

.feature-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  background-color: var(--foreground);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) { .feature-icon { width: 2.5rem; height: 2.5rem; } }
.feature-icon svg { width: 1rem; height: 1rem; color: var(--background); }
@media (min-width: 640px) { .feature-icon svg { width: 1.25rem; height: 1.25rem; } }

.feature-content h3 { font-size: var(--font-size-sm); font-weight: 600; color: var(--foreground); margin-bottom: 0.125rem; }
@media (min-width: 640px) { .feature-content h3 { font-size: var(--font-size-base); } }
.feature-content p { font-size: var(--font-size-xs); color: var(--muted-foreground); }
@media (min-width: 640px) { .feature-content p { font-size: var(--font-size-sm); } }

/* Network Visual */
.network-visual { display: flex; justify-content: center; }
.network-container { position: relative; width: 250px; height: 250px; }
@media (min-width: 640px) { .network-container { width: 280px; height: 280px; } }

.network-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5rem;
  height: 5rem;
  background-color: var(--foreground);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  z-index: 10;
  animation: hubPulse 3s ease-in-out infinite;
}

@keyframes hubPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.03); }
}

.network-hub span { font-size: var(--font-size-2xl); font-weight: 700; color: var(--background); }
.network-hub-logo { width: 100%; height: 100%; object-fit: contain; padding: 0.75rem; }
.network-nodes { position: absolute; inset: 0; }

.network-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3rem;
  height: 3rem;
  transform: rotate(var(--angle)) translateX(100px) rotate(calc(var(--angle) * -1)) translate(-50%, -50%) scale(0.6);
  opacity: 0;
  transition: transform var(--transition-slow), opacity var(--transition-slow);
  transition-delay: calc(0.5s + (var(--i, 0) * 0.1s));
}

.network-visual.visible .network-node {
  transform: rotate(var(--angle)) translateX(100px) rotate(calc(var(--angle) * -1)) translate(-50%, -50%) scale(1);
  opacity: 1;
}

.node-inner {
  width: 100%;
  height: 100%;
  background-color: var(--background);
  border: 2px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.node-inner::after {
  content: '';
  width: 1rem;
  height: 1rem;
  background-color: var(--secondary);
  border-radius: 0.25rem;
}

.network-lines { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ===== Publishers Section ===== */
.publishers-grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .publishers-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.publishers-visual { order: 2; }
@media (min-width: 1024px) { .publishers-visual { order: 1; } }

.publishers-content { order: 1; }
@media (min-width: 1024px) { .publishers-content { order: 2; } }
.publishers-content .heading-md { margin-bottom: 1rem; }

.tools-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; max-width: 280px; margin: 0 auto 1rem; }
@media (min-width: 640px) { .tools-grid { gap: 0.75rem; max-width: 320px; } }

.tool-card {
  aspect-ratio: 1;
  background-color: hsla(0, 0%, 96%, 0.5);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.tool-card:hover {
  background-color: var(--foreground);
  border-color: var(--foreground);
  transform: translateY(-2px) scale(1.02);
}

.tool-card:hover .tool-icon { background-color: hsla(0, 0%, 100%, 0.1); }
.tool-card:hover .tool-icon svg { color: var(--background); }
.tool-card:hover span { color: var(--background); }

.tool-icon {
  width: 2rem;
  height: 2rem;
  background-color: hsla(0, 0%, 0%, 0.05);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-smooth);
}

@media (min-width: 640px) { .tool-icon { width: 2.5rem; height: 2.5rem; } }

.tool-icon svg { width: 1rem; height: 1rem; color: var(--foreground); transition: color var(--transition-smooth); }
@media (min-width: 640px) { .tool-icon svg { width: 1.25rem; height: 1.25rem; } }

.tool-card span { font-size: 0.625rem; font-weight: 600; color: var(--foreground); text-align: center; transition: color var(--transition-smooth); }
@media (min-width: 640px) { .tool-card span { font-size: var(--font-size-xs); } }

.earnings-card {
  max-width: 280px;
  margin: 0 auto;
  background-color: var(--foreground);
  border-radius: 0.75rem;
  padding: 1rem;
  color: var(--background);
}

@media (min-width: 640px) { .earnings-card { max-width: 320px; } }

.earnings-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; }
.earnings-header span:first-child { font-size: var(--font-size-xs); color: hsla(0, 0%, 100%, 0.7); }
.live-badge { font-size: 0.625rem; background-color: hsla(140, 70%, 50%, 0.2); color: hsl(140, 70%, 50%); padding: 0.125rem 0.5rem; border-radius: var(--radius-full); font-weight: 500; }
.earnings-value { font-size: var(--font-size-2xl); font-weight: 700; margin-bottom: 0.25rem; }
.earnings-change { display: flex; align-items: center; gap: 0.5rem; font-size: var(--font-size-xs); color: hsla(0, 0%, 100%, 0.7); }
.earnings-change svg { width: 0.75rem; height: 0.75rem; color: hsl(140, 70%, 50%); }
.earnings-change .positive { color: hsl(140, 70%, 50%); font-weight: 500; }

/* ===== How It Works Section ===== */
.steps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 640px) { .steps-grid { gap: 1rem; } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }

.step-card {
  position: relative;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  transition: box-shadow var(--transition-smooth);
}

@media (min-width: 640px) { .step-card { padding: 1.25rem; } }
.step-card:hover { box-shadow: var(--shadow-elevated); }

.step-number { position: absolute; top: 0.5rem; right: 0.75rem; font-size: 2rem; font-weight: 700; color: hsla(0, 0%, 96%, 0.8); }
@media (min-width: 640px) { .step-number { top: 0.75rem; right: 1rem; font-size: 2.5rem; } }

.step-icon {
  position: relative;
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.5rem;
  background-color: var(--foreground);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) { .step-icon { width: 3rem; height: 3rem; margin-bottom: 1rem; } }
.step-icon svg { width: 1rem; height: 1rem; color: var(--background); }
@media (min-width: 640px) { .step-icon svg { width: 1.25rem; height: 1.25rem; } }

.step-card h3 { font-size: var(--font-size-sm); font-weight: 700; color: var(--foreground); margin-bottom: 0.25rem; position: relative; z-index: 10; }
@media (min-width: 640px) { .step-card h3 { font-size: var(--font-size-lg); margin-bottom: 0.5rem; } }
.step-card p { font-size: var(--font-size-xs); color: var(--muted-foreground); position: relative; z-index: 10; }
@media (min-width: 640px) { .step-card p { font-size: var(--font-size-sm); } }

/* ===== Why Choose Section ===== */
.reasons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 640px) { .reasons-grid { gap: 1rem; } }
@media (min-width: 1024px) { .reasons-grid { grid-template-columns: repeat(4, 1fr); } }

.reason-card {
  background-color: hsla(0, 0%, 96%, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  transition: all var(--transition-smooth);
}

@media (min-width: 640px) { .reason-card { padding: 1.25rem; } }
.reason-card:hover { background-color: var(--secondary); transform: translateY(-8px); }

.reason-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.5rem;
  background-color: var(--foreground);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-smooth);
}

@media (min-width: 640px) { .reason-icon { width: 3rem; height: 3rem; margin-bottom: 1rem; } }
.reason-card:hover .reason-icon { transform: scale(1.1); }
.reason-icon svg { width: 1rem; height: 1rem; color: var(--background); }
@media (min-width: 640px) { .reason-icon svg { width: 1.25rem; height: 1.25rem; } }

.reason-card h3 { font-size: var(--font-size-sm); font-weight: 700; color: var(--foreground); margin-bottom: 0.25rem; }
@media (min-width: 640px) { .reason-card h3 { font-size: var(--font-size-lg); margin-bottom: 0.5rem; } }
.reason-card p { font-size: var(--font-size-xs); color: var(--muted-foreground); }
@media (min-width: 640px) { .reason-card p { font-size: var(--font-size-sm); } }

/* ===== CTA Section ===== */
.cta-section {
  min-height: calc(100vh - var(--navbar-height));
  min-height: calc(100svh - var(--navbar-height));
  display: flex;
  align-items: center;
  padding: 3rem 0;
  background-color: var(--foreground);
}

.cta-content { max-width: 56rem; margin: 0 auto; text-align: center; }
.cta-content .heading-md { color: var(--background); margin-bottom: 1rem; }
.cta-content .body-md { max-width: 42rem; margin: 0 auto 2rem; }

.cta-buttons { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .cta-buttons { flex-direction: row; justify-content: center; gap: 1rem; } }

.cta-buttons .btn { width: 100%; min-width: 180px; }
@media (min-width: 640px) { .cta-buttons .btn { width: auto; min-width: 200px; } }

.trust-badges { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width: 640px) { .trust-badges { gap: 1.5rem; } }

.trust-badge { display: flex; align-items: center; gap: 0.5rem; color: hsla(0, 0%, 100%, 0.7); }

.badge-check {
  width: 1.25rem;
  height: 1.25rem;
  background-color: hsl(140, 70%, 45%);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-check svg { width: 0.75rem; height: 0.75rem; color: white; }
.trust-badge span { font-size: var(--font-size-xs); font-weight: 500; }
@media (min-width: 640px) { .trust-badge span { font-size: var(--font-size-sm); } }

/* ===== Footer ===== */
.footer {
  background-color: hsla(0, 0%, 96%, 0.3);
  border-top: 1px solid var(--border);
}

.footer .section-container { padding-top: 3rem; padding-bottom: 3rem; }
@media (min-width: 640px) { .footer .section-container { padding-top: 4rem; padding-bottom: 4rem; } }
@media (min-width: 1024px) { .footer .section-container { padding-top: 5rem; padding-bottom: 5rem; } }

.footer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr repeat(3, 1fr); gap: 2.5rem; } }
@media (min-width: 1024px) { .footer-grid { gap: 5rem; } }

.footer-brand { grid-column: span 2; }
@media (min-width: 768px) { .footer-brand { grid-column: span 1; } }

.footer-logo { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 1rem; }
.footer-logo-text { font-size: var(--font-size-xl); font-weight: 700; color: var(--foreground); }
.footer-logo .text-muted { color: var(--muted-foreground); }
.footer-tagline { font-size: var(--font-size-sm); color: var(--muted-foreground); margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.75rem; }

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--secondary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  transition: all var(--transition-base);
}

.social-link:hover { color: var(--foreground); background-color: hsla(0, 0%, 96%, 0.8); }
.social-link svg { width: 1rem; height: 1rem; }

.footer-links h4 { font-size: var(--font-size-sm); font-weight: 600; color: var(--foreground); margin-bottom: 1rem; }
@media (min-width: 640px) { .footer-links h4 { font-size: var(--font-size-base); margin-bottom: 1.25rem; } }

.footer-links ul { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .footer-links ul { gap: 1rem; } }

.footer-links a { font-size: var(--font-size-xs); color: var(--muted-foreground); transition: color var(--transition-base); }
@media (min-width: 640px) { .footer-links a { font-size: var(--font-size-sm); } }
.footer-links a:hover { color: var(--foreground); }

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; margin-top: 4rem; padding-top: 2rem; } }

.footer-bottom p { font-size: var(--font-size-xs); color: var(--muted-foreground); }
@media (min-width: 640px) { .footer-bottom p { font-size: var(--font-size-sm); } }
