.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(94,166,255,0.16), transparent 26%),
    radial-gradient(circle at bottom left, rgba(34,197,94,0.08), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.05));
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  padding: clamp(18px, 3vw, 28px);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/assets/images/hero/hero-arka-plan-5.webp') center center / cover no-repeat;
  /*opacity: 0.38;*/
  /*filter: saturate(0.96) brightness(0.68) blur(0.3px);*/
  
  /*transform: scale(1.01);*/
  z-index: 0;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,10,20,0.82) 0%, rgba(6,12,23,0.66) 34%, rgba(7,14,26,0.34) 58%, rgba(6,13,24,0.56) 100%),
    linear-gradient(180deg, rgba(4,10,20,0.10) 0%, rgba(4,10,20,0.24) 100%);
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(320px, 0.85fr);
  grid-template-areas:
    "brand contact"
    "content side";
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.brand-row {
  grid-area: brand;
  min-width: 0;
}

.contact-row {
  grid-area: contact;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  min-width: 0;
}

.hero-left {
  grid-area: content;
  min-width: 0;
}

.hero-right {
  grid-area: side;
  min-width: 0;
  display: grid;
  gap: 14px;
  align-content: start;
}

.brand-box {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand-mark {
  width: clamp(78px, 9vw, 110px);
  height: clamp(78px, 9vw, 110px);
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff, #f3f6fb);
  border: 1px solid rgba(255,255,255,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
  padding: clamp(10px, 1.2vw, 14px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-meta {
  min-width: 0;
}

.brand-meta strong {
  display: block;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.brand-meta span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.45;
}

.header-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 100%;
}

.mini-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: #dceafe;
  font-size: 13px;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  min-height: 40px;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.mini-contact svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.mini-contact:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 10px 20px rgba(0,0,0,0.10);
}

h1 {
  margin: 0;
  font-size: clamp(34px, 5.9vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 9.5ch;
}

.title-accent {
  color: var(--accent);
}

.lead {
  margin: 20px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.78;
}

.highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.highlight-item {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px;
  min-height: 82px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.03));
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.highlight-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at right center, rgba(255,255,255,0.10), transparent 42%);
  opacity: 0.55;
  z-index: 0;
  transition: opacity 0.22s ease;
}

.highlight-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10) 0, rgba(255,255,255,0.10) 2px, transparent 2px),
    linear-gradient(180deg, rgba(7,18,34,0.10) 0%, rgba(5,14,28,0.18) 100%);
  z-index: 1;
}

.highlight-item:hover {
  transform: translateY(-2px);
  border-color: rgba(94,166,255,0.18);
  box-shadow: 0 14px 28px rgba(0,0,0,0.14);
}

.highlight-item:hover::before {
  opacity: 0.85;
}

.highlight-item > * {
  position: relative;
  z-index: 2;
}

.highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  background: none;
  border: 0;
  box-shadow: none;
  transition: transform 0.22s ease, color 0.22s ease, filter 0.22s ease;
}

.highlight-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  filter: drop-shadow(0 5px 12px rgba(42,108,255,0.14));
  transition: transform 0.22s ease, filter 0.22s ease;
}

.highlight-item:hover .highlight-icon {
  transform: translateY(-3px) scale(1.06) rotate(-4deg);
  animation: highlightIconHover 0.45s ease;
}

.highlight-item span {
  font-size: 14px;
  color: #e5ecff;
  line-height: 1.6;
}

.side-actions {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.highlights .highlight-item:nth-child(1) .highlight-icon svg { color: #a9c7ff; }
.highlights .highlight-item:nth-child(2) .highlight-icon svg { color: #f2c48d; }
.highlights .highlight-item:nth-child(3) .highlight-icon svg { color: #9fd8bb; }

.highlights .highlight-item:nth-child(1)::after {
  background:
    linear-gradient(180deg, rgba(169,199,255,0.95) 0, rgba(169,199,255,0.95) 2px, transparent 2px),
    linear-gradient(180deg, rgba(7,18,34,0.10) 0%, rgba(5,14,28,0.18) 100%);
}

.highlights .highlight-item:nth-child(2)::after {
  background:
    linear-gradient(180deg, rgba(242,196,141,0.95) 0, rgba(242,196,141,0.95) 2px, transparent 2px),
    linear-gradient(180deg, rgba(7,18,34,0.10) 0%, rgba(5,14,28,0.18) 100%);
}

.highlights .highlight-item:nth-child(3)::after {
  background:
    linear-gradient(180deg, rgba(159,216,187,0.95) 0, rgba(159,216,187,0.95) 2px, transparent 2px),
    linear-gradient(180deg, rgba(7,18,34,0.10) 0%, rgba(5,14,28,0.18) 100%);
}

@keyframes highlightIconHover {
  0% {
    transform: translateY(0) scale(1) rotate(0);
  }
  35% {
    transform: translateY(-4px) scale(1.08) rotate(-5deg);
  }
  70% {
    transform: translateY(-2px) scale(1.04) rotate(3deg);
  }
  100% {
    transform: translateY(-3px) scale(1.06) rotate(-4deg);
  }
}