/* RESET */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background: #101315;
  color: #f5f1e8;
  line-height: 1.6;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Jedan centrirani kontejner za sadržaj */
.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero dijelovi */
.tax-hero {
  padding: 120px 16px 60px;
  background:
    radial-gradient(circle at top, rgba(198, 167, 106, 0.12), transparent 36%),
    linear-gradient(180deg, #101315 0%, #13181b 100%);
  text-align: center;
}

/* Naziv tvrtke */
.tax-label {
  display: inline-block;
  margin-bottom: 14px;
  color: #c6a76a;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Naslov */
.tax-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.08;
  margin-bottom: 16px;
  color: #e2d2b3;
}

/* Uvod */
.tax-hero .tax-intro {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(245, 241, 232, 0.78);
  font-size: 1.04rem;
  line-height: 1.8;
}

/* Gumbi – centrirani */
.tax-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* Gumbi (primarni i sekundarni) */
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}

.primary-btn {
  background: #c6a76a;
  color: #101315;
  border: 1px solid #c6a76a;
}

.primary-btn:hover {
  background: #e2d2b3;
  border-color: #e2d2b3;
  transform: translateY(-2px);
}

.secondary-btn {
  color: #f5f1e8;
  border: 1px solid rgba(198, 167, 106, 0.34);
  background: rgba(255, 255, 255, 0.03);
}

.secondary-btn:hover {
  border-color: rgba(226, 210, 179, 0.55);
  background: rgba(198, 167, 106, 0.08);
  transform: translateY(-2px);
}

/* GLAVNI BLOK – CENTRIRAN VISOK TEXT */
.centered-block {
  padding: 64px 0 32px;
  text-align: left;
  max-width: 880px;
  margin: 0 auto;
}

.centered-block h2,
.centered-block h3 {
  margin-bottom: 14px;
  color: #e2d2b3;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.centered-block h3 {
  font-size: 1.24rem;
  margin-bottom: 12px;
  color: #f4ead7;
}

.centered-block p {
  margin: 0 0 18px;
  color: rgba(245, 241, 232, 0.76);
  line-height: 1.8;
  font-size: 1rem;
}

.centered-block ul {
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.centered-block li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: rgba(245, 241, 232, 0.76);
  line-height: 1.6;
}

.centered-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c6a76a;
}

/* Gumb na dnu (kao CTA) */
.mail-cta-footer {
  text-align: center;
  margin-top: 28px;
}

/* Animacija dolaska teksta */
.centered-block {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeRevealC 0.72s ease forwards;
}

@keyframes fadeRevealC {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsiv – do 640px */
@media (max-width: 640px) {
  .tax-hero {
    padding: 90px 16px 50px;
  }

  .centered-block {
    padding: 50px 0 24px;
  }

  .centered-block p,
  .centered-block li {
    line-height: 1.74;
  }
}