/* assets/site.css */
:root{
  --navy:#0b1f3a;
  --navy-2:#123a73;
  --ink:#0b1220;
  --muted:#4f5f78;
  --bg:#ffffff;
  --bg-soft:#f5f8fe;
  --line:#e6edf8;
  --card:#ffffff;
  --shadow: 0 18px 50px rgba(11,31,58,.10);
  --shadow-sm: 0 10px 25px rgba(11,31,58,.08);
  --radius: 18px;
  --radius-sm: 14px;
  --max: 1160px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page{ min-height: 100%; }

.container{
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

/* Typography */
h1,h2,h3{ margin:0; }
p{ margin:0; }

/* Hero simplificat și înalt */
.tm-hero-clean {
  position: relative;
  height: 85vh; /* Foarte înalt */
  min-height: 600px;
  display: flex;
  align-items: flex-end; /* Textul jos */
  padding-bottom: 80px;
  overflow: hidden;
  background: var(--navy);
}

.tm-hero-clean__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 10s ease;
}
/* Efect subtil de zoom la incarcare */
.tm-hero-clean:hover .tm-hero-clean__bg {
  transform: scale(1.05);
}

.tm-hero-clean__overlay {
  position: absolute;
  inset: 0;
  /* Gradient fin de la negru transparent jos spre transparent sus */
  background: linear-gradient(to top, rgba(11,31,58, 0.9) 10%, rgba(11,31,58, 0.4) 50%, transparent 100%);
}

.tm-hero-clean__content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 900px;
}

.tm-hero-clean__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.tm-hero-clean__lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255, 0.9);
  max-width: 75ch;
  font-weight: 400;
}

.tm-article {
  padding: 80px 0;
  background: var(--bg);
}

.tm-article--soft {
  background: var(--bg-soft);
}

.tm-text-columns {
  column-count: 2;
  column-gap: 65px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  text-align: justify;
}

.tm-text-columns p {
  margin-bottom: 24px;
}

.tm-text-head {
  font-size: 30px;
  color: var(--navy);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 30px;
  line-height: 1.2;
}

/* Lista simplă, fără bullet-uri urâte, integrată în text */
.tm-clean-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.tm-clean-list li {
  font-weight: 600;
  color: var(--navy-2);
  background: rgba(11,31,58, 0.05);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
}

.tm-image-break {
  width: min(var(--max), calc(100% - 44px));
  margin: 50px auto; /* O centrăm și îi dăm aer sus/jos */
  height: 750px;     /* Înălțime fixă, mult mai mică decât înainte */

  position: relative;
  overflow: hidden;
  border-radius: var(--radius); /* Îi rotunjim colțurile */
  box-shadow: var(--shadow-sm); /* O umbră fină pentru profunzime */
}

.tm-image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Se taie automat ca să umple cadrul */
  display: block;
}

/* Responsiv */
@media (max-width: 900px) {
  .tm-text-columns {
    column-count: 1;
  }
  .tm-hero-clean {
    height: auto;
    padding: 120px 0 60px;
  }
  .tm-image-break {
    height: 400px;
  }
}