body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: #020617;
  color: white;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
}

h2 {
  padding: 20px;
}


/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

header h1 a {
  color: white;
  text-decoration: none;
}

blockquote::before {
  content: "| ";
  font-weight: bold;
  color: #00d084;
}

.hero {
  height: 100vh;
  position: relative;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent, #020617);
}


.hero-content {
  position: absolute;
  top: 40%;
  left: 10%;
  right: 10%;
  transform: translateY(-50%);
}

.hero h2 {
  font-size: 4rem;
}

.message p {
  padding-left: 20px;
  padding-right:20px;
}

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

.card {
  text-align: center;
}

.card-image {
  width: 100%;
  aspect-ratio: 1 / 1; 
  overflow: hidden;
  border-radius: 10px;
}

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

@media (max-width: 600px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}


/* MAP */
iframe {
  width: 90%;
  height: 500px;
  border: none;
  display: block;
  margin: auto;
}

/* CALCULATOR */
.calc-box {
  text-align: center;
}

input, select {
  padding: 10px;
  margin: 10px;
}
/*BUTTONS*/

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.btn {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  padding: 14px 22px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
}

.btn.primary {
  background: linear-gradient(90deg, #00d084, #007aff);
  color: white;
  box-shadow: 0 10px 30px rgba(0, 208, 132, 0.25);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 208, 132, 0.35);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.btn.secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

/* ===== CALCULATOR ===== */

#calculator {
  padding: 80px 20px;
  text-align: center;
}

.calc-box {
  max-width: 420px;
  margin: 30px auto;
  padding: 30px;
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);

  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.calc-box input,
.calc-box select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;

  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;

  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;

  transition: all 0.2s ease;
  box-sizing: border-box;
}

.calc-box input:focus,
.calc-box select:focus {
  outline: none;
  border-color: #00d084;
  box-shadow: 0 0 0 2px rgba(0, 208, 132, 0.2);
}

.calc-box {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  text-align: left;
}

.calc-box .btn {
  margin-top: 10px;
}

#result {
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #00d084;
}

.seo-text {
  max-width: 800px;
  margin: 80px auto;
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
}

/* ARTICLES */
.articles {
  max-width: 1100px;
  margin: 80px auto;
  padding-right: 10px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px;
}

.article-card {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  overflow: hidden;
}

.article-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.article-content {
  padding: 20px;
}



 /* =========================
   ARTICLE PAGE
   ========================= */

.article {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
  box-sizing: border-box;
  line-height: 1.8;
}


.article h1,
.article h2,
.article p,
.toc {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.article li {
  padding-bottom: 10px;
}

.article h2 {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.article {
  text-align: left;
}

.article h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 0 0 20px 0;
}

.article h2 {
  margin: 40px 0 10px 0;
}

.article p {
  margin: 16px 0;
  color: rgba(255,255,255,0.85);
}

.intext {
  color: inherit;
  text-decoration: underline;
}

.coloredlist li::marker {
  color: #00d084;
  content
}


.hero.small {
  height: 45vh;
  min-height: 260px;
  max-height: 420px;
  overflow: hidden;
  position: relative;
}

.hero.small .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.article.overlay {
  position: absolute;
  max-width: 100%;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
  circle,
  rgba(255, 255, 255, 0.15) 0%,
  rgba(255, 255, 255, 0.12) 60%,
  rgba(0, 0, 0, 0.12) 100%
  );
}

/* TOC */

.toc {
  margin: 30px 0;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  box-sizing: border-box;
}

.toc ul {
  margin: 10px 0 0 18px;
}

.toc a {
  color: #00d084;
  text-decoration: none;
  display: inline-block;
  padding: 2px 0;
}  

.toc strong {
  display: block;
  margin: 10px 18px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}



/* Nav */

.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 60px;
  padding: 20px 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.article-nav .btn {
  flex: 1 1 0;
  min-width: 0;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
}


@media (max-width: 600px) {

  .article {
    padding: 0 20px;
  }

  .hero.small {
    min-height: 200px;
    height: 30vh;
  }

  .article-nav {
    flex-direction: column;
  }

  .article-nav .btn {
    width: 80%;
  }

}

/* =========================
   ARTICLE TABLE
   ========================= */

.table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  overflow: hidden;
}

.table th,
.table td {
  padding: 14px 16px;
  text-align: left;
}

.table thead {
  background: rgba(255,255,255,0.06);
}

.table th {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.table td {
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* zebra rows */
.table tbody tr:nth-child(even) {
  background: rgba(255,255,255,0.02);
}

/* hover effect */
.table tbody tr:hover {
  background: rgba(0, 208, 132, 0.08);
}

/* responsive */
@media (max-width: 600px) {
  .table th,
  .table td {
    padding: 12px;
    font-size: 0.85rem;
  }
}

/* =========================
FOOTER 
=========================*/
footer {
  text-align: center;
  font-size: 14px;
  padding: 40px;
}

.footer-brand {
    margin-bottom: 10px;
    color: #333;
  }

.footer-acquisition a {
    font-size: 12px;
    color: #777;
    text-decoration: none;
  }

.footer-acquisition a:hover {
    text-decoration: underline;
  }

.afoot {
  color: inherit;
  text-decoration: underline;
}