@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2563eb;
  --secondary: #ff7a00;
  --dark: #081120;
  --dark2: #0f172a;
  --light: #f8fafc;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--dark);
  color: #fff;
  line-height: 1.8;
}

.container {
  width: min(1100px, 90%);
  margin: auto;
}

/* HERO */

.hero-article {
  padding: 120px 0 80px;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.2),
    rgba(255, 122, 0, 0.15)
  );
}
.breadcrumb {
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.breadcrumb .container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

a {
  color: var(--secondary);
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
.back-home {
  display: inline-block;
  margin-top: 40px;
  padding: 4%;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  transition: 0.3s;
}
.breadcrumb span {
  color: #ced4db;
}
.badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

.hero-article h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-article p {
  max-width: 700px;
  margin: auto;
  color: #cbd5e1;
}

/* ARTICLE */

.article {
  padding: 80px 0;
}

.featured-image {
  width: 100%;
  border-radius: 24px;
  margin-bottom: 50px;
}

article {
  max-width: 850px;
  margin: auto;
}
h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 15px;
  position: relative;
}

article h3 {
  margin-top: 25px;
  margin-bottom: 10px;
}

article p {
  margin-bottom: 18px;
  color: #d1d5db;
}

ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

blockquote {
  margin: 40px 0;
  padding: 25px;
  border-left: 4px solid var(--secondary);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  font-size: 1.1rem;
}
.related-posts {
  margin-top: 60px;
}

.related-posts h2 {
  margin-bottom: 25px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.related-card {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 5px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s;
}

.related-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.related-card h3 {
  margin-bottom: 10px;
}

.related-card p {
  color: #cbd5e1;
}
/* =========================
   INTRO TEXT
========================= */

.article-intro .lead {
  font-size: 18px;
  font-weight: 500;
}
/* =========================
   HIGHLIGHT BOX
========================= */

.highlight-box {
  background: #123768;
  border-left: 5px solid #2563eb;
  padding: 20px;
  border-radius: 12px;
  margin: 25px 0;
}

.highlight-box h3 {
  margin-top: 0;
}

/* =========================
   CALL OUT (BUYWEB)
========================= */

.callout {
  background: linear-gradient(135deg, #616163, #68686e);
  color: white;
  padding: 25px;
  border-radius: 16px;
  margin: 40px 0;
}

.callout h2,
.callout p {
  color: white;
}

/* =========================
   SUMMARY BOX
========================= */

.summary-box {
  background: #111827;
  color: white;
  padding: 25px;
  border-radius: 16px;
  margin-top: 40px;
}

.summary-box p {
  color: #e5e7eb;
}

/* CTA */

.cta-box {
  margin-top: 50px;
  text-align: center;
  padding: 40px;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.15),
    rgba(255, 122, 0, 0.15)
  );
}

.cta-box h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
}
/* FAQ ARTICLE */
.article-faq {
  margin-top: 60px;
}

.article-faq h2 {
  margin-bottom: 25px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary, #111827);
}

.article-faq details {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.article-faq details:hover {
  border-color: #2563eb;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.08);
}

.article-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  font-weight: 600;
  font-size: 1rem;
  color: #111827;
  position: relative;
}

.article-faq summary::-webkit-details-marker {
  display: none;
}

.article-faq summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: bold;
  color: #2563eb;
  transition: 0.3s;
}

.article-faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.article-faq details p {
  padding: 0 20px 20px;
  margin: 0;
  line-height: 1.8;
  color: #6b7280;
}
/* AUTHOR BOX */
.author-box {
  margin-top: 50px;
  padding: 25px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(0, 123, 255, 0.08),
    rgba(0, 123, 255, 0.03)
  );
  border: 1px solid rgba(0, 123, 255, 0.15);
  display: flex;
  gap: 20px;
  align-items: center;
  transition: all 0.3s ease;
}

.author-box:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 123, 255, 0.3);
  box-shadow: 0 15px 40px rgba(0, 123, 255, 0.08);
}

.author-avatar {
  flex-shrink: 0;
}

.author-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color, #2563eb);
}

.author-content {
  flex: 1;
}

.author-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary-color, #1755da);
}

.author-role {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color, #9cb1df);
}

.author-content p {
  margin: 0;
  line-height: 1.8;
  color: var(--text-muted, #6b7280);
}
/* FOOTER */

.footer {
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* MOBILE */

@media (max-width: 768px) {
  .hero-article {
    padding: 100px 0 60px;
  }

  article h2 {
    font-size: 1.6rem;
  }

  .cta-box {
    padding: 25px;
  }
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  overflow: hidden;
  border-radius: 16px;
}

.price-table th,
.price-table td {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.price-table th {
  background: #2563eb;
  color: #fff;
  font-weight: 700;
}

.price-table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}

.price-table tr:hover {
  background: rgba(37, 99, 235, 0.08);
}
