/* ==================== VARIABLES ==================== */
:root {
  --bg-dark: #000021;
  --bg-card: #04043a;
  --bg-card-light: rgba(50, 190, 237, 0.1);
  --accent-blue: #1e73be;
  --accent-cyan: #32beed;
  --accent-lime: #c4ff02;
  --accent-red: #f8596a;
  --accent-purple: #4000e2;
  --text-white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --border-subtle: rgba(50, 190, 237, 0.3);
}

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

/* ==================== BASE ==================== */
html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Lato", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==================== TYPOGRAPHY ==================== */
h1,
h2,
h3 {
  font-family: "Exo 2", sans-serif;
}

h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
  text-align: center;
}

h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
}

p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.text-cyan {
  color: var(--accent-cyan);
}

.text-lime {
  color: var(--accent-lime);
}

.text-white {
  color: var(--text-white);
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-block;
  padding: 12px 36px;
  border-radius: 24px;
  font-family: "Exo 2", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: transparent;
  color: var(--text-white);
  border: 3px solid #fc9444;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.28);
}

.btn-primary:hover {
  background: #ff830f;
  border-color: #ff830f;
  transform: translateY(-4px);
  box-shadow: 0 4px 30px -4px rgba(255, 131, 15, 0.9);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 3px solid var(--accent-cyan);
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.28);
}

.btn-outline:hover {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
  box-shadow: 0 4px 30px -4px rgba(50, 190, 237, 0.9);
}

/* ==================== SECTION DIVIDER ==================== */
.divider {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-cyan),
    transparent
  );
  margin: 0;
}

/* ==================== UTILITY: HIDDEN ==================== */
.hidden-section {
  display: none !important;
}

/* ==================== EMOJI ICONS ==================== */
.emoji-icon {
  font-size: 48px;
  line-height: 1;
  display: block;
}

.emoji-bullet {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==================== HEADER ==================== */
header {
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 33, 0.95);
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-white);
}

.logo img {
  height: 40px;
  width: auto;
}

.logo span {
  font-size: 24px;
  font-weight: 400;
}

/* ==================== HERO SECTION ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

.hero-badges {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

.hero-badge i {
  color: var(--accent-cyan);
}

/* ==================== LOGO BAR ==================== */
.logo-bar {
  background: var(--accent-cyan);
  padding: 24px 0;
}

.logo-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.logo-bar-text {
  color: var(--bg-dark);
  font-size: 14px;
  font-weight: 500;
}

.logo-bar-logos {
  display: flex;
  gap: 40px;
  align-items: center;
}

.logo-bar-logos img {
  height: 40px;
  width: auto;
  filter: brightness(0) saturate(100%);
  opacity: 0.9;
}

.logo-bar-logos span {
  color: var(--bg-dark);
  font-size: 18px;
  font-weight: 600;
}

/* ==================== PROBLEM SECTION ==================== */
.problem-section {
  padding: 100px 0;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 48px;
  margin-top: 48px;
}

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

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

.problem-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-icon i {
  width: 48px;
  height: 48px;
  color: var(--accent-red);
}

.problem-item h3 {
  color: var(--text-white);
  margin-bottom: 12px;
}

.problem-item p {
  font-size: 15px;
}

/* ==================== SOLUTION SECTION ==================== */
.solution-section {
  padding: 100px 0;
}

.solution-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

.solution-intro p {
  font-size: 18px;
}

.solution-card {
  background: linear-gradient(
    135deg,
    var(--bg-card) 0%,
    rgba(50, 190, 237, 0.15) 100%
  );
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 48px;
}

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

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

.solution-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-icon i {
  width: 48px;
  height: 48px;
  color: var(--accent-cyan);
}

/* ==================== PROCESS/TIMELINE SECTION ==================== */
.process-section {
  padding: 100px 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 12.5%;
  right: 12.5%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-red) 0%,
    #f59e0b 33%,
    #84cc16 66%,
    #22c55e 100%
  );
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

.timeline-item {
  text-align: center;
  position: relative;
}

.timeline-week {
  font-size: 12px;
  color: var(--accent-lime);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-weight: 600;
}

.timeline-dot {
  width: 32px;
  height: 32px;
  background: linear-gradient(
    135deg,
    var(--accent-cyan) 0%,
    var(--accent-purple) 100%
  );
  border-radius: 50%;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow:
    0 0 20px rgba(50, 190, 237, 0.6),
    0 0 40px rgba(64, 0, 226, 0.3);
  border: 3px solid var(--bg-dark);
  animation: pulse-glow 2s ease-in-out infinite;
}

.timeline-item:nth-child(1) .timeline-dot {
  animation-delay: 0s;
}

.timeline-item:nth-child(2) .timeline-dot {
  animation-delay: 0.5s;
}

.timeline-item:nth-child(3) .timeline-dot {
  animation-delay: 1s;
}

.timeline-item:nth-child(4) .timeline-dot {
  animation-delay: 1.5s;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow:
      0 0 20px rgba(50, 190, 237, 0.6),
      0 0 40px rgba(64, 0, 226, 0.3);
  }
  50% {
    box-shadow:
      0 0 30px rgba(50, 190, 237, 0.8),
      0 0 60px rgba(64, 0, 226, 0.5);
  }
}

.timeline-card {
  background: linear-gradient(
    145deg,
    var(--bg-card) 0%,
    rgba(50, 190, 237, 0.08) 100%
  );
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 28px;
  min-height: 220px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.timeline-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-cyan);
  box-shadow: 0 20px 40px rgba(50, 190, 237, 0.15);
}

.timeline-card:hover::before {
  opacity: 1;
}

.timeline-card h3 {
  color: var(--text-white);
  font-size: 18px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.timeline-card h3 .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-white);
}

.timeline-card ul {
  list-style: none;
  text-align: left;
}

.timeline-card li {
  color: var(--text-muted);
  font-size: 14px;
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  transition: color 0.3s ease;
}

.timeline-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  opacity: 0.7;
}

.timeline-card:hover li {
  color: var(--text-white);
}

.timeline-card:hover li::before {
  opacity: 1;
  box-shadow: 0 0 10px var(--accent-cyan);
}

/* ==================== DELIVERABLES SECTION ==================== */
.deliverables-section {
  padding: 100px 0;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 48px;
}

.deliverables-included,
.deliverables-excluded {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 32px;
}

.deliverables-included {
  border: 1px solid rgba(50, 190, 237, 0.3);
}

.deliverables-excluded {
  border: 1px solid rgba(248, 89, 106, 0.3);
}

.deliverables-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.deliverables-header i {
  width: 32px;
  height: 32px;
}

.deliverables-included .deliverables-header i {
  color: var(--accent-cyan);
}

.deliverables-excluded .deliverables-header i {
  color: var(--accent-red);
}

.deliverables-list {
  list-style: none;
}

.deliverables-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.deliverables-list li:last-child {
  border-bottom: none;
}

.deliverables-list li i {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.deliverables-included .deliverables-list li i {
  color: var(--accent-cyan);
}

.deliverables-excluded .deliverables-list li i {
  color: var(--accent-red);
}

/* ==================== PRICING SECTION ==================== */
.pricing-section {
  padding: 100px 0;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-cyan);
}

.pricing-card.featured {
  border-color: var(--accent-cyan);
  background: linear-gradient(
    135deg,
    var(--bg-card) 0%,
    rgba(50, 190, 237, 0.2) 100%
  );
}

.pricing-card.featured::before {
  content: "PIU SCELTO";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-cyan);
  color: var(--bg-dark);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-size: 48px;
  color: var(--accent-cyan);
  margin: 24px 0;
}

.pricing-card .price span {
  font-size: 18px;
  color: var(--text-muted);
}

.pricing-card .description {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  min-height: 60px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 8px 0;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li i {
  width: 16px;
  height: 16px;
  color: var(--accent-cyan);
}

/* ==================== FIT SECTION ==================== */
.fit-section {
  padding: 100px 0;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 48px;
}

.fit-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 40px;
}

.fit-card.yes {
  border: 1px solid rgba(50, 190, 237, 0.3);
}

.fit-card.no {
  border: 1px solid rgba(248, 89, 106, 0.3);
}

.fit-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.fit-header i {
  width: 32px;
  height: 32px;
}

.fit-card.yes .fit-header i {
  color: var(--accent-cyan);
}

.fit-card.no .fit-header i {
  color: var(--accent-red);
}

.fit-list {
  list-style: none;
}

.fit-list li {
  padding: 12px 0;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.fit-list li i {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.fit-card.yes .fit-list li i {
  color: var(--accent-cyan);
}

.fit-card.no .fit-list li i {
  color: var(--accent-red);
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
  padding: 100px 0;
}

.faq-grid {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-question h3 {
  color: var(--text-white);
  font-size: 18px;
  margin: 0;
  font-family: "Exo 2", sans-serif;
}

.faq-question i {
  color: var(--accent-cyan);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding-bottom: 24px;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  padding: 100px 0;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.cta-text h2 {
  text-align: left;
}

.cta-icon {
  width: 64px;
  height: 64px;
  color: var(--text-white);
  margin-bottom: 24px;
}

.cta-form {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 40px;
}

.cta-form h3 {
  text-align: center;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text-white);
  font-family: "Lato", sans-serif;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.cta-form .btn {
  width: 100%;
  margin-top: 8px;
}

/* ==================== FOOTER ==================== */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--border-subtle);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-cyan);
}

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

  .hero-price {
    margin: 0 auto;
  }

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

  .problem-grid,
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .timeline::before {
    display: none;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .deliverables-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .cta-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

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

  .cta-icon {
    display: block;
    margin: 0 auto 12px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  /* Header mobile */
  header {
    padding: 14px 0;
  }

  .logo img {
    height: 34px;
  }

  .header-content .btn {
    padding: 12px 18px;
    font-size: 13px;
  }

  .logo-bar-content {
    flex-direction: column;
    text-align: center;
  }

  .logo-bar-logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 90%;
  }

  .logo-bar-logos img {
    max-width: 100%;
    height: auto;
  }

  .footer-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  /* Hero section mobile improvements */
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

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

  .hero-subtitle {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .hero-text .btn {
    display: block;
    width: 100%;
    margin-bottom: 16px;
    text-align: center;
  }

  .hero-text .btn:last-of-type {
    margin-bottom: 0;
  }

  .hero-badges {
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
    align-items: center;
  }

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

  /* Sections reduced padding */
  .problem-section,
  .solution-section,
  .process-section,
  .deliverables-section,
  .pricing-section,
  .fit-section,
  .faq-section,
  .cta-section {
    padding: 60px 0;
  }

  /* Cards reduced padding */
  .problem-card,
  .solution-card {
    padding: 32px 20px;
  }

  .timeline-card {
    padding: 24px 20px;
    min-height: auto;
  }

  .deliverables-included,
  .deliverables-excluded,
  .fit-card {
    padding: 24px 20px;
  }

  /* Typography adjustments */
  h2 {
    font-size: clamp(24px, 6vw, 32px);
    margin-bottom: 16px;
  }

  h3 {
    font-size: 18px;
  }

  .problem-item p,
  .solution-item p {
    font-size: 14px;
  }

  /* CTA form */
  .cta-form {
    padding: 24px 16px;
  }

  .cta-form iframe {
    height: 450px;
  }

  .cta-text p {
    font-size: 16px !important;
  }

  /* FAQ mobile */
  .faq-question h3 {
    font-size: 16px;
    padding-right: 32px;
  }
}

/* Extra small devices (phones in portrait) */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  /* Header adjustments */
  header {
    padding: 10px 0;
  }

  .logo img {
    height: 28px;
  }

  .header-content .btn {
    padding: 10px 14px;
    font-size: 11px;
    letter-spacing: 0.5px;
  }

  /* Hero fine-tuning */
  .hero {
    padding: 80px 0 48px;
  }

  h1 {
    font-size: 26px;
    margin-bottom: 16px;
  }

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

  .btn {
    padding: 8px 24px;
    font-size: 14px;
  }

  /* Cards further reduction */
  .problem-card,
  .solution-card {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .timeline-card {
    padding: 20px 16px;
  }

  .deliverables-included,
  .deliverables-excluded,
  .fit-card {
    padding: 20px 16px;
  }

  /* Emoji icons smaller */
  .emoji-icon {
    font-size: 36px;
  }

  .problem-icon,
  .solution-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }

  /* Lists tighter */
  .deliverables-list li,
  .fit-list li {
    padding: 10px 0;
    font-size: 14px;
  }

  .timeline-card li {
    font-size: 13px;
    padding: 5px 0;
  }

  /* Sections padding */
  .problem-section,
  .solution-section,
  .process-section,
  .deliverables-section,
  .pricing-section,
  .fit-section,
  .faq-section,
  .cta-section {
    padding: 48px 0;
  }

  /* Logo bar */
  .logo-bar {
    padding: 16px 0;
  }

  .logo-bar-text {
    font-size: 12px;
  }

  .logo-bar-logos {
    gap: 16px;
  }

  .logo-bar-logos img {
    height: 28px;
  }

  /* CTA section */
  .cta-icon {
    width: 48px;
    height: 48px;
  }

  .cta-form {
    padding: 20px 12px;
  }

  /* Footer */
  .footer-links {
    flex-direction: column;
    gap: 16px;
  }

  footer {
    padding: 32px 0;
  }
}
