:root {
  --bg: #020712;
  --bg-soft: #06111f;
  --panel: #0b1726;
  --panel-2: #0f2235;
  --gold: #f2a51c;
  --gold-deep: #c87c0c;
  --text: #f6f8fb;
  --muted: #b8c1cc;
  --ink: #07111f;
  --line: rgba(242, 165, 28, 0.26);
  --white-line: rgba(255, 255, 255, 0.1);
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 6%, rgba(242, 165, 28, 0.18), transparent 26rem),
    linear-gradient(145deg, #020712 0%, #06111f 44%, #020712 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(242, 165, 28, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(242, 165, 28, 0.18), transparent 1.2rem),
    linear-gradient(145deg, rgba(15, 34, 53, 0.96), rgba(2, 7, 18, 0.96));
  box-shadow: 0 0 32px rgba(242, 165, 28, 0.34);
}

.brand-mark svg {
  width: 2.25rem;
  height: 2.25rem;
}

.mark-eye {
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4.2;
}

.mark-core {
  fill: var(--gold);
}

.mark-play {
  fill: var(--ink);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
}

.nav-links a {
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 0.55rem 0.85rem;
}

.nav-links a:hover {
  border-color: var(--line);
  color: var(--text);
}

.section-pad {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5rem 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  align-items: center;
  gap: 3rem;
  min-height: calc(100vh - 5rem);
  padding-top: 4rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 1.1rem;
  font-size: clamp(3.9rem, 9.4vw, 7.2rem);
  line-height: 0.94;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 4.8rem);
  line-height: 0.98;
}

h3 {
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero-lead {
  color: var(--muted);
  font-size: clamp(1.35rem, 2.6vw, 2.3rem);
  font-weight: 700;
}

.hero-line {
  color: var(--gold);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border-radius: 999px;
  font-weight: 850;
  padding: 0.82rem 1.25rem;
}

.button-primary {
  background: linear-gradient(145deg, var(--gold), var(--gold-deep));
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(216, 148, 30, 0.28);
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--text);
}

.hero-media,
.impact-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(242, 165, 28, 0.22);
  border-radius: 0.6rem;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-media {
  display: flex;
  align-items: flex-end;
  min-height: min(66vh, 43rem);
  isolation: isolate;
  background-image:
    linear-gradient(90deg, rgba(2, 7, 18, 0.74), rgba(6, 17, 31, 0.12) 48%, rgba(2, 7, 18, 0.55)),
    linear-gradient(0deg, rgba(2, 7, 18, 0.9), rgba(2, 7, 18, 0.08) 58%, rgba(242, 165, 28, 0.14)),
    url("?asset=admin-building");
  background-position: center;
  background-size: cover;
}

.hero-media::before {
  content: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  right: 10%;
  bottom: 20%;
  width: 30%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 165, 28, 0.7), transparent);
  opacity: 0.75;
}

.hero-media-content {
  width: min(25rem, calc(100% - 2.5rem));
  margin: 1.5rem;
  border-left: 2px solid rgba(242, 165, 28, 0.82);
  background: linear-gradient(90deg, rgba(2, 7, 18, 0.78), rgba(2, 7, 18, 0.34));
  padding: 1.35rem 1.45rem;
  backdrop-filter: blur(8px);
}

.hero-media-content strong,
.hero-media-content span {
  display: block;
}

.hero-media-content strong {
  font-size: clamp(1.35rem, 2vw, 2.05rem);
  line-height: 1.08;
}

.hero-media-content p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.media-kicker {
  margin-bottom: 0.65rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  border-top: 1px solid var(--line);
}

.about-copy {
  display: grid;
  gap: 1rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.service-grid,
.package-grid,
.process-grid {
  display: grid;
  gap: 1rem;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.service-card,
.package-card,
.process article,
.impact-panel,
.cta {
  border: 1px solid var(--white-line);
  background: linear-gradient(155deg, rgba(13, 29, 46, 0.96), rgba(5, 13, 25, 0.94));
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.24);
}

.service-card {
  min-height: 17.25rem;
  padding: 1.7rem;
  border-color: rgba(255, 255, 255, 0.09);
}

.service-card span,
.process article span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card h3 {
  margin: 1.15rem 0 0.85rem;
  color: var(--text);
  font-size: 1.14rem;
  line-height: 1.25;
}

.service-card p {
  line-height: 1.68;
}

.service-card p,
.process p,
.impact-panel p,
.cta p,
.package-tag {
  color: var(--muted);
}

.impact {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: stretch;
  gap: 0;
}

.impact-media img {
  width: 100%;
  height: auto;
  max-height: 38rem;
  object-fit: contain;
  object-position: center;
}

.impact-media {
  display: flex;
  align-items: flex-end;
  min-height: 34rem;
  padding: 0;
  border-color: rgba(242, 165, 28, 0.2);
  border-radius: 0.7rem 0 0 0.7rem;
  background:
    linear-gradient(90deg, rgba(2, 7, 18, 0.18), rgba(2, 7, 18, 0.1) 42%, rgba(2, 7, 18, 0.76)),
    linear-gradient(0deg, rgba(2, 7, 18, 0.86), rgba(2, 7, 18, 0.02) 56%, rgba(242, 165, 28, 0.12)),
    url("?asset=comunicare-administratie-publica"),
    var(--panel);
  background-position: center;
  background-size: cover;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.impact-media img {
  display: none;
}

.impact-media::after {
  content: "Comunicare publică profesionistă";
  max-width: 19rem;
  margin: 1.65rem;
  border-left: 2px solid rgba(242, 165, 28, 0.82);
  color: var(--text);
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 900;
  line-height: 1.08;
  padding-left: 1rem;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.impact-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 0;
  border-radius: 0 0.7rem 0.7rem 0;
  padding: 2.4rem;
  background:
    linear-gradient(155deg, rgba(10, 24, 39, 0.98), rgba(4, 10, 20, 0.96)),
    var(--panel);
}

.trust-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.trust-list span {
  border-left: 2px solid rgba(242, 165, 28, 0.82);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font-weight: 750;
  padding: 0.78rem 0.95rem;
}

.package-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.package-card {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 29rem;
  padding: 1.75rem 1.55rem;
  border-color: rgba(255, 255, 255, 0.09);
}

.package-card.is-featured {
  border-color: rgba(242, 165, 28, 0.34);
  background:
    linear-gradient(155deg, rgba(242, 165, 28, 0.16), rgba(15, 34, 53, 0.96)),
    var(--panel);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.31);
}

.package-badge {
  display: inline-flex;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0.28rem 0.65rem;
  text-transform: uppercase;
}

.package-card h3 {
  color: var(--gold);
  font-size: 1.48rem;
  text-transform: uppercase;
}

.package-price {
  color: var(--text);
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.2;
}

.package-card ul {
  display: grid;
  gap: 0.72rem;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  display: flex;
  gap: 0.55rem;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.42;
}

.package-card li::before {
  content: "";
  flex: 0 0 0.46rem;
  width: 0.46rem;
  height: 0.46rem;
  margin-top: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process article {
  padding: 1.3rem;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
  border-color: rgba(242, 165, 28, 0.18);
  padding: 3rem 3.2rem;
  background:
    linear-gradient(105deg, rgba(242, 165, 28, 0.12), transparent 38%),
    linear-gradient(155deg, rgba(13, 29, 46, 0.96), rgba(5, 13, 25, 0.96));
}

.cta > div {
  max-width: 760px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 2rem 0 3rem;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--text);
}

@media (max-width: 980px) {
  .hero,
  .about-grid,
  .impact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 28rem;
  }

  .impact-panel {
    order: 1;
  }

  .impact-media {
    min-height: auto;
    order: 2;
    padding: 1rem;
    border-radius: 0.7rem;
    background:
      linear-gradient(155deg, rgba(15, 34, 53, 0.94), rgba(5, 13, 25, 0.94)),
      var(--panel);
  }

  .impact-panel {
    border-left: 1px solid var(--white-line);
    border-radius: 0.7rem;
  }

  .impact-media img {
    display: block;
  }

  .impact-media::after {
    content: none;
  }

  .service-grid,
  .package-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .section-pad {
    width: min(100% - 1.2rem, 1180px);
    padding: 3.3rem 0;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .service-grid,
  .package-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .package-card {
    min-height: auto;
  }

  .cta,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta {
    padding: 1.4rem;
  }
}
