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

body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background: #f4f6fb;
  color: #1f2533;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: #fff;
  padding: 70px 0 60px;
  text-align: center;
}

.logo {
  height: 80px;
  width: auto;
  margin-bottom: 18px;
}

.brand {
  font-size: 0.95rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.subtitle {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
  opacity: 0.92;
}

/* TOOLBAR */
.toolbar {
  background: #fff;
  border-bottom: 1px solid #e7ecf5;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 10px rgba(30, 58, 138, 0.05);
}

.toolbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  background: #f1f4fb;
  color: #3a4356;
  border: 1px solid #e2e8f5;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
}

.filter-btn:hover {
  background: #e7efff;
}

.filter-btn.active {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}

.toolbar-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.lang-btn {
  background: #1e3a8a;
  color: #fff;
  border: none;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s ease;
}

.lang-btn:hover {
  background: #0f1e4a;
}

.other-btn {
  background: #f59e0b;
  color: #fff;
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.18s ease;
}

.other-btn:hover {
  background: #d97706;
}

.download-btn {
  background: #16a34a;
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s ease;
}

.download-btn:hover {
  background: #15803d;
}

/* PRICING / SERVICE CARDS */
.price-card {
  background: #fff;
  border-radius: 14px;
  padding: 26px 24px;
  box-shadow: 0 6px 18px rgba(30, 58, 138, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  border-top: 4px solid #2563eb;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(30, 58, 138, 0.16);
}

.price-card h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
  color: #1e3a8a;
}

.price-card .price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #16a34a;
  margin: 10px 0 4px;
}

.price-card .price small {
  font-size: 0.8rem;
  color: #5b6478;
  font-weight: 500;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 14px 0;
  flex-grow: 1;
}

.price-card ul li {
  padding: 6px 0;
  font-size: 0.92rem;
  color: #3a4356;
  border-bottom: 1px dashed #e7ecf5;
}

.price-card ul li::before {
  content: "✓ ";
  color: #16a34a;
  font-weight: 700;
}

.price-card .btn {
  margin-top: 8px;
}

.price-card.popular {
  border-top: 4px solid #f59e0b;
  position: relative;
  background: linear-gradient(180deg, #fffaf0 0%, #ffffff 60%);
}

.price-card.popular::before {
  content: "★ MOST POPULAR ★";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card.popular .price {
  color: #d97706;
}

.tier-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5b6478;
  margin-bottom: 6px;
}

.back-link {
  display: inline-block;
  margin: 20px 0;
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.back-link:hover {
  color: #1e3a8a;
}

.note {
  background: #fff7ed;
  border-left: 4px solid #f59e0b;
  padding: 12px 16px;
  border-radius: 8px;
  color: #78350f;
  font-size: 0.9rem;
  margin: 18px 0 30px;
}

/* CATEGORY */
.category {
  margin: 55px 0;
}

.category.hide {
  display: none;
}

.cat-title {
  font-size: 1.7rem;
  color: #1e3a8a;
  border-left: 5px solid #2563eb;
  padding-left: 14px;
}

.cat-desc {
  margin: 8px 0 24px 19px;
  color: #5b6478;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

/* CARD */
.card {
  background: #fff;
  border-radius: 14px;
  padding: 26px 24px;
  box-shadow: 0 6px 18px rgba(30, 58, 138, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(30, 58, 138, 0.16);
}

.thumb {
  width: 100%;
  height: 180px;
  object-fit: contain;
  object-position: center;
  background: #f1f4fb;
  border-radius: 10px;
  margin-bottom: 16px;
  border: 1px solid #e7ecf5;
  display: block;
  padding: 6px;
  transition: opacity 0.2s ease;
}

.card a:hover .thumb {
  opacity: 0.88;
}

.card-tag {
  align-self: flex-start;
  background: #e7efff;
  color: #2563eb;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.card p {
  color: #5b6478;
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 18px;
}

.url-link {
  display: inline-block;
  align-self: flex-start;
  color: #2563eb;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  word-break: break-all;
  margin-bottom: 14px;
  border-bottom: 1px dashed #93b4f5;
}

.url-link:hover {
  color: #1e3a8a;
  border-bottom-style: solid;
}

.btn {
  align-self: flex-start;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn:hover {
  background: #1e3a8a;
}

/* FOOTER */
.footer {
  background: #1f2533;
  color: #c7cdda;
  text-align: center;
  padding: 26px 0;
  margin-top: 60px;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }
}
