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

body {
  font-family: 'Inter', sans-serif;
  background:#f1f5f9;
  color:#1f2933;
}

/* =========================
   CONTAINER
   ========================= */
.container {
  width:90%;
  max-width:1100px;
  margin:auto;
}

/* =========================
   NAVBAR
   ========================= */
.navbar {
  background:white;
  border-bottom:1px solid #e5e7eb;
  position:sticky;
  top:0;
  z-index:1000;
}

.nav-container {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 32px; /* spațiu premium */
}

.logo {
  height:70px;
}

nav a {
  margin-left:30px;
  text-decoration:none;
  color:#0f172a;
  font-weight:600;
  transition:0.2s;
}

nav a:hover {
  color:#1d4ed8;
}

/* =========================
   HERO
   ========================= */
.hero {
  background:#0f172a;
  color:white;
  text-align:center;
  padding:110px 20px 90px;
}

.hero-inner {
  max-width:820px;
  margin:auto;
}

.hero h1 {
  font-size:2.6rem;
  line-height:1.25;
  margin-bottom:20px;
}

.hero-subtitle {
  font-size:1.15rem;
  line-height:1.7;
  color:#cbd5e1;
  margin-bottom:45px;
}

.hero h1 {
  letter-spacing: -0.3px;
}

/* =========================
   HERO IMAGE
   ========================= */
.hero-image img {
  width:100%;
  border-radius:10px;
  margin:40px 0;
}

/* =========================
   BENEFITS
   ========================= */
.benefits {
  background:white;
  text-align:center;
  padding:60px 20px;
}

.benefit-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
  margin-top:30px;
}

.benefit {
  background:#f8fafc;
  padding:25px;
  border-radius:10px;
}

/* =========================
   EXAMPLES
   ========================= */
.examples {
  background:#e2e8f0;
  padding:60px 20px;
}

.example-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.example-card {
  background:white;
  padding:25px;
  border-radius:10px;
}

/* =========================
   TRUST
   ========================= */
.trust {
  text-align:center;
  padding:60px 20px;
}

/* =========================
   TESTIMONIALS
   ========================= */
.testimonials {
  background:white;
  padding:60px 20px;
  text-align:center;
}

.testimonial-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
  margin-top:30px;
}

.testimonial-card {
  background:#f8fafc;
  padding:25px;
  border-radius:10px;
}

.testimonial-card img {
  border-radius:50%;
  margin-bottom:10px;
}

/* =========================
   FORM
   ========================= */
.form-section {
  background:#0f172a;
  color:white;
  text-align:center;
  padding:60px 20px;
}

.form-section input {
  display:block;
  margin:10px auto;
  padding:12px;
  width:100%;
  max-width:400px;
  border:none;
  border-radius:6px;
}

/* =========================
   BUTTON SYSTEM (GLOBAL)
   ========================= */
button,
.primary-btn,
.hero-btn {
  background:#1d4ed8;
  border:none;
  padding:16px 34px;
  color:white;
  border-radius:8px;
  font-size:1.05rem;
  font-weight:600;
  cursor:pointer;
  transition: all 0.25s ease;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  margin-top:8px;
}

/* HOVER */
button:hover,
.primary-btn:hover,
.hero-btn:hover {
  background:#1e40af;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

/* ACTIVE */
button:active,
.primary-btn:active,
.hero-btn:active {
  transform: translateY(-1px);
}

/* =========================
   FOOTER
   ========================= */
.footer {
  background:#0f172a;
  color:white;
  text-align:center;
  padding:40px 20px;
}
/* =========================
   MOBILE OPTIMIZATION
   ========================= */
@media (max-width: 768px) {

  /* NAVBAR */
  .nav-container {
    padding: 14px 18px;
  }

  .logo {
    height: 55px;
  }

  nav a {
    margin-left: 15px;
    font-size: 0.9rem;
  }

  /* HERO */
  .hero {
    padding: 70px 20px 60px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  /* SECTIONS */
  .benefits,
  .examples,
  .trust,
  .testimonials,
  .form-section {
    padding: 45px 20px;
  }

  /* GRID devine 1 coloană */
  .benefit-grid,
  .example-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  /* FORM */
  .form-section input {
    max-width: 100%;
  }

  /* BUTTON */
  button,
  .primary-btn,
  .hero-btn {
    width: 100%;
    max-width: 320px;
  }

}
/* =========================
   TELEGRAM FLOAT BUTTON
   ========================= */
.telegram-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #229ED9;
  color: white;
  font-size: 22px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
  z-index: 999;
}

.telegram-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}
/* FAQ */
.faq {
  background:#ffffff;
  padding:70px 20px;
}

.faq-inner {
  max-width:800px;
  margin:auto;
}

.faq-item {
  margin-bottom:25px;
  text-align:left;
}

.faq-item h3 {
  font-size:1.2rem;
  margin-bottom:8px;
  color:#0f172a;
}

.faq-item p {
  color:#475569;
  line-height:1.6;
}
.members-btn {
  margin-left: 30px;
  background: #16a34a;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.members-btn:hover {
  background: #15803d;
}
/* =========================
   BLOG POST CARD
   ========================= */
.blog-post {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  max-width: 500px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.blog-post h3 {
  margin-bottom: 10px;
}

.blog-post p {
  margin-bottom: 20px;
  color: #475569;
}

.blog-post .primary-btn {
  display: inline-block;
}
/* =========================
   ARTICLE PAGE
   ========================= */

.article {
  background: #f8fafc;
  padding: 60px 0;
}

.article-container {
  max-width: 750px;
}

.article h1 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.article-intro {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 30px;
}

.article h2 {
  margin-top: 35px;
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.article p {
  line-height: 1.7;
  margin-bottom: 15px;
}

.highlight-box {
  background: #eef2ff;
  border-left: 4px solid #1d4ed8;
  padding: 15px 20px;
  border-radius: 6px;
  margin: 20px 0;
}

.example-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
  margin: 20px 0;
}

.example-box .result {
  font-weight: 700;
  color: #16a34a;
}

.checklist li {
  margin-bottom: 8px;
}

.warning-box {
  background: #fff7ed;
  border-left: 4px solid #f59e0b;
  padding: 15px 20px;
  border-radius: 6px;
  margin-top: 30px;
}
/* =========================
   MOBILE NAVBAR FIX
   ========================= */
@media (max-width: 768px) {

  nav {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .members-btn {
    margin-left: 0;
    padding: 6px 10px;
    font-size: 0.8rem;
    white-space: nowrap;
  }

}
/* =========================
   MOBILE NAVBAR WRAP FIX
   ========================= */
@media (max-width: 768px) {

  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  nav a {
    margin-left: 0;
    font-size: 0.85rem;
  }

  .members-btn {
    padding: 6px 10px;
  }
}
.members-articles {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.members-articles .blog-post {
  max-width: 420px;
}
.members-subtitle {
  margin-bottom: 40px;
}