:root {
  --font: "Geist", "Geist Placeholder", sans-serif;
  --bg: #ffffff;
  --bg-dark: #111111;
  --text: #111111;
  --accent: #e63946;
  --hover: #f1f1f1;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  margin: 0;
  padding: 0;
}

.page-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 40px;
}

.sidebar {
  flex: 1 1 200px;
  background: var(--bg-dark);
  color: #fff;
  padding: 30px;
  border-radius: 12px;
}

.sidebar h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.sidebar a {
  display: block;
  color: var(--hover);
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.main-content {
  flex: 3 1 600px;
}

.hero {
  margin-bottom: 60px;
}

.hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
}

.hero .dot {
  color: var(--accent);
}

.hero p {
  font-size: 1.1rem;
  margin-top: 12px;
  color: #555;
}

.template-grid {
  text-align: center;
  padding: 80px 40px;
}

.template-grid h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.templates {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.template-card {
  background: var(--hover);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.3s ease;
}

.template-card:hover {
  transform: translateY(-4px);
}

.template-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 16px;
  object-fit: cover;
}

.template-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  text-align: left;
}

.template-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 12px;
   text-align: left;
}

.template-card span {
  font-weight: 600;
  color: var(--accent);
}

/* Tablet */
@media (max-width: 1024px) {
  .template-grid h2 {
    font-size: 1.8rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .template-grid {
    padding: 60px 20px;
  }

  .template-grid h2 {
    font-size: 1.6rem;
  }

  .template-card {
    padding: 16px;
  }

  .template-card img {
    margin-bottom: 12px;
  }
}

.templates,
.bundles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}


.bundle-section {
  text-align: center;
  padding: 80px 40px;
}

.bundle-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.bundles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.bundle-card {
  background: var(--hover);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.3s ease;
}

.bundle-card:hover {
  transform: translateY(-4px);
}

.bundle-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.bundle-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 16px;
}

.bundle-card span {
  font-weight: 600;
  color: var(--accent);
  display: block;
  margin-top: 16px;
}

.bundle-images {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.bundle-images img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Tablet */
@media (max-width: 1024px) {
  .bundle-section h2 {
    font-size: 1.8rem;
  }

  .bundle-images img {
    width: 60px;
    height: 60px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .bundle-section {
    padding: 60px 20px;
  }

  .bundle-section h2 {
    font-size: 1.6rem;
  }

  .bundle-card {
    padding: 16px;
  }

  .bundle-images {
    gap: 8px;
  }

  .bundle-images img {
    width: 50px;
    height: 50px;
  }
}

.template-card,
.bundle-card {
  background: var(--hover);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.template-card h3,
.bundle-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.template-card p,
.bundle-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 12px;
}

.template-card span,
.bundle-card span {
  font-weight: 600;
  color: var(--accent);
}

/* Tablet */
@media (max-width: 1024px) {
  .page-layout {
    flex-direction: column;
    padding: 40px 30px;
  }

  .sidebar {
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .template-grid h2,
  .bundle-section h2 {
    font-size: 1.5rem;
  }

  .template-card,
  .bundle-card {
    padding: 16px;
  }
}

:root {
  --font: "Geist", "Geist Placeholder", sans-serif;
  --bg-dark: #111111;
  --text2: #ffffff;
  --muted2: #cccccc;
  --accent: #e63946;
}

.hero-tertanda {
  background-color: var(--bg-dark);
  color: var(--text2);
  font-family: var(--font);
  text-align: center;
  padding: 120px 40px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-label {
  background-color: var(--accent);
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
}

.hero-tertanda h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-tertanda .dot {
  color: var(--accent);
  margin-left: 4px;
}

.hero-tertanda p {
  font-size: 1.1rem;
  color: var(--muted2);
  max-width: 700px;
  line-height: 1.6;
}

/* Tablet View */
@media (max-width: 1024px) {
  .hero-tertanda h1 {
    font-size: 2.2rem;
  }

  .hero-tertanda p {
    font-size: 1rem;
  }
}

/* Mobile View */
@media (max-width: 768px) {
  .hero-tertanda {
    padding: 80px 20px;
  }

  .hero-tertanda h1 {
    font-size: 1.8rem;
  }

  .hero-tertanda p {
    font-size: 0.95rem;
  }
}

.template-label {
  background-color: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 12px;
}

.template-meta {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  margin-top: 14px;
  color: #555;
}