/* Stiluri principale pentru pagina de prezentare Primăria Mea */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Ascund Roadmap-ul la cerere (buton + secțiune) */
.site-header__nav .nav-link[href="#roadmap"],
.footer-nav .nav-link[href="#roadmap"],
.roadmap {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overscroll-behavior: none;
  height: 100%;
  scrollbar-width: none;
}

body {
  font-family:
    "SF Pro Display",
    "SF Pro Text",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  height: 100%;
  overscroll-behavior: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* Ascund scrollbar-ul pe browsere WebKit/Blink */
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

:root {
  --gradient-blue: linear-gradient(
    130deg,
    rgba(0, 40, 104, 0.95) 0%,
    rgba(0, 82, 165, 0.9) 55%,
    rgba(35, 139, 255, 0.85) 100%
  );
  --gradient-yellow: linear-gradient(
    120deg,
    rgba(255, 214, 102, 0.95) 0%,
    rgba(255, 205, 0, 0.92) 55%,
    rgba(255, 184, 0, 0.88) 100%
  );
}

.landing {
  background-image: url("../assets/images/tricolor_desktop.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.18);
  display: grid;
  place-items: center;
  text-decoration: none;
  z-index: 2;
}

.scroll-down::before {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(255, 255, 255, 0.95);
  border-bottom: 2px solid rgba(255, 255, 255, 0.95);
  transform: translateY(-2px) rotate(45deg);
}

.scroll-down:hover {
  background: rgba(0, 0, 0, 0.28);
}

.landing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(255, 205, 0, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(206, 17, 38, 0.1) 0%,
      transparent 50%
    );
  animation: pulse 8s ease-in-out infinite;
}

.site-header {
  position: fixed;
  top: 1.2rem;
  left: 0;
  width: 100%;
  padding: 0;
  display: flex;
  justify-content: center;
  z-index: 10;
  color: white;
  font-weight: 600;
  pointer-events: none;
}

.site-header__nav {
  display: inline-flex;
  gap: 0.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.05)
  );
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  pointer-events: auto;
}

.site-header__nav.nav-dark {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
}

.site-header__nav .nav-link {
  color: white;
  text-decoration: none;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: none;
  font-family:
    "SF Pro Display",
    "SF Pro Text",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.site-header__nav .nav-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.site-header__nav .nav-link.active {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.landing-content {
  max-width: 1200px;
  text-align: center;
  position: relative;
  z-index: 1;
  padding-top: 4rem;
  transform: translateY(-2rem);
}

.app-logo {
  width: 10vh;
  height: 10vh;
  object-fit: contain;
}

.landing-title {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
}

.landing h1 {
  font-size: 12vh;
  color: white;
  margin-bottom: 0rem;
  font-weight: 700;
  font-family: "Playfair Display", "Times New Roman", Georgia, serif;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.landing p {
  font-size: 2.2vh;
  font-family:
    "SF Pro Display",
    "SF Pro Text",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.landing-video-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2256af;
  font-weight: 700;
  text-decoration: none;
  margin: 0.8rem auto 2rem;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.landing-video-link:hover {
  color: #ffe480;
  transform: translateX(4px);
}

.email-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}

.email-input {
  width: 100%;
  min-width: 0;
  padding: 1.2rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  outline: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button {
  width: 100%;
  min-width: 0;
  padding: 1.2rem 2rem;
  background: linear-gradient(135deg, #ffcd00 0%, #ffb800 100%);
  color: #003880;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 205, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 205, 0, 0.6);
  background: linear-gradient(135deg, #ffb800 0%, #ffcd00 100%);
}

.launch-date {
  color: #ffcd00;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1rem;
}

.features {
  padding: 6rem 2rem 6rem;
  background: white;
}

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

.section-title {
  font-size: 4.2vh;
  text-align: center;
  margin-bottom: 0rem;
  color: #0052a5;
  text-transform: uppercase;
  font-family: "Playfair Display", "Times New Roman", Georgia, serif;
  line-height: 1.15;
}

.section-subtitle {
  text-align: center;
  color: #0052a5;
  font-family:
    "SF Pro Display",
    "SF Pro Text",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 2.2vh;
  line-height: 1.6;
  letter-spacing: 0;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.section-subtitle-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 3rem;
}

.features .section-subtitle {
  margin-bottom: 1.2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  padding: 0;
  background: white;
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(0, 56, 128, 0.18);
  transition: all 0.3s ease;
  border-top: 4px solid #ffcd00;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 82, 165, 0.2);
}

.futures_images {
  width: 100%;
  height: 180px;
  margin: 0 0 0.5rem;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.futures_images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #000000;
  text-align: center;
}

.feature-card p {
  color: #666;
  line-height: 1.5;
  text-align: center;
}

.feature-body {
  padding: 1.2rem 1.4rem 1.6rem;
}

.proof-section {
  padding: 6rem 2rem 10rem;
  background: var(--gradient-blue);
}

.proof-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.proof-container .section-title,
.proof-container .section-subtitle {
  color: #ffffff;
}

.roadmap h2 {
  font-family: "Playfair Display", "Times New Roman", Georgia, serif;
  letter-spacing: 0.05em;
  line-height: 1.08;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.proof-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.08) 100%
  );
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.35);
  text-align: left;
  backdrop-filter: blur(18px);
}

.proof-card h3 {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.proof-card p {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.proof-card-highlight p {
  color: #ffcd00;
}

.proof-card-highlight .proof-list li {
  color: #ffcd00;
}

.proof-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.proof-list li {
  position: relative;
  padding-left: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.proof-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffcd00;
}

.proof-card-stats {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
  text-align: center;
  background: linear-gradient(
    140deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.18) 100%
  );
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(22px);
}

.stat-card {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 18px;
  padding: 1.5rem;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  backdrop-filter: blur(18px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.stat-card .stat-number {
  font-size: 3rem;
  font-weight: 700;
  display: block;
  color: #ffcd00;
}

.stat-card .stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer {
  background: #ffffff;
  color: #000000;
  padding: 2rem 1.5rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-nav {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  padding: 0.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
}

.footer-nav .nav-link {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  padding: 0.38rem 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.footer-nav .nav-link:hover {
  background: rgba(0, 56, 128, 0.08);
  border-color: rgba(0, 56, 128, 0.2);
}

.footer-nav.nav-dark {
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
}

.footer-nav.nav-dark .nav-link {
  color: #000000;
}

.footer-nav.nav-dark .nav-link:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.2);
}

.footer-nav .nav-link.active {
  background: rgba(0, 56, 128, 0.15);
  border-color: rgba(0, 56, 128, 0.4);
}

.footer-nav.nav-dark .nav-link.active {
  background: rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.35);
}

.footer-subtitle {
  margin-bottom: 0.4rem;
}

.footer-copy {
  color: #000000;
  font-size: 0.9rem;
}

.roadmap {
  padding: 4rem 2rem;
  background: var(--gradient-yellow);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.roadmap-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.roadmap h2 {
  font-size: 3rem;
  color: #003880;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.roadmap-intro {
  color: #003880;
  font-family:
    "SF Pro Display",
    "SF Pro Text",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 2.2vh;
  line-height: 1.5;
  letter-spacing: 0;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.roadmap-modules {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: left;
}

.roadmap .module-card:first-child {
  display: none;
}

.module-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 56, 128, 0.15);
  border: 1px solid rgba(0, 56, 128, 0.1);
}

.module-card h3 {
  color: #003880;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.module-lists {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.module-list h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4f5a6b;
  margin-bottom: 0.6rem;
}

.module-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.module-list li {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  padding: 0.8rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: #003880;
  box-shadow: 0 8px 18px rgba(0, 56, 128, 0.08);
}

.module-list.upcoming li {
  opacity: 0.9;
  color: #5a6474;
  box-shadow: none;
  border: 1px dashed rgba(0, 56, 128, 0.2);
  background: rgba(255, 255, 255, 0.2);
}

.status-check {
  font-weight: 700;
  color: #0a7d15;
  margin-left: 0.6rem;
}

.roadmap-cta {
  display: inline-block;
  margin-top: 3rem;
  padding: 1.1rem 2.6rem;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(216, 46, 47, 0.95) 0%,
    rgba(176, 16, 32, 0.85) 100%
  );
  color: white;
  font-weight: 700;
  text-transform: none;
  text-decoration: none;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 25px rgba(184, 16, 32, 0.4);
}

.success-message {
  background: var(--gradient-yellow);
  color: #003880;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
  font-weight: 600;
  display: none;
}
