/* ─── HEADER ───────────────────────────────────── */
.header {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 28px 16px 16px;
  background: linear-gradient(180deg, rgba(21, 125, 164, .08) 0%, transparent 100%);
}

@media (max-width: 640px) {
  .header {
    padding: 20px 12px 12px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 16px 10px 12px;
  }
}

.sun-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 10px;
  position: relative;
}

.sun-circle {
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, var(--lightblue), var(--submain));
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 28px rgba(21, 125, 164, .5), 0 0 56px rgba(21, 125, 164, .3);
  animation: pulse 2s ease-in-out infinite;
}

.sun-rays {
  position: absolute;
  inset: 0;
  animation: spin 10s linear infinite;
}

.ray {
  position: absolute;
  width: 3px;
  height: 9px;
  background: linear-gradient(var(--submain), transparent);
  border-radius: 2px;
  left: 50%;
  top: 0;
  transform-origin: bottom center;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 28px rgba(21, 125, 164, .45), 0 0 56px rgba(21, 125, 164, .28)
  }

  50% {
    box-shadow: 0 0 38px rgba(21, 125, 164, .6), 0 0 76px rgba(21, 125, 164, .38)
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

h1 {
  font-size: clamp(1.2rem, 5vw, 1.8rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--submain), var(--text));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  line-height: 1.2;
}

.subtitle {
  color: var(--dim);
  font-size: clamp(.75rem, 3vw, .85rem);
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.15rem;
  }

  .subtitle {
    font-size: .72rem;
  }
}

/* ─── COMPANY BAR HEADER ──────────────────────────────── */
.company-bar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  background: linear-gradient(135deg, rgba(21, 125, 164, .12), rgba(246, 252, 255, .85));
  border-bottom: 1px solid rgba(21, 125, 164, .18);
  padding: 10px 16px;
}

.badge-title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(21, 125, 164, .12);
  border: 1px solid rgba(21, 125, 164, .24);
  color: var(--submain);
  font-size: .72rem;
  font-weight: 700;
}

@media (max-width: 640px) {
  .company-bar {
    gap: 12px;
    padding: 10px 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .company-logo {
    width: 56px;
    height: 56px;
  }

  .badge-title {
    font-size: .68rem;
  }
}

@media (max-width: 480px) {
  .company-bar {
    text-align: center;
  }

  .company-logo {
    width: 50px;
    height: 50px;
  }
}

/* left section wrapper for company name */
.company-left {
  min-width: 160px;
  text-align: right;
}

.logo-pursa {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 3px;
  background: linear-gradient(135deg, var(--submain), var(--text));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}

/* Logo image in company bar */
.company-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
  display: block;
}

.company-name {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.company-sub {
  font-size: .72rem;
  color: var(--dim);
}

.company-tel {
  color: var(--submain);
  text-decoration: none;
  font-weight: 700;
  direction: ltr;
  display: inline-block;
}

.company-tel:hover {
  color: var(--text);
}

.company-badge {
  background: rgba(21, 125, 164, .12);
  border: 1px solid rgba(21, 125, 164, .24);
  color: var(--submain);
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}