@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background-color: #000;
  height: 100%;
  font-family: 'Montserrat', sans-serif;
}

body {
  min-height: 100vh;
  background-image: url('Frame_26.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px 64px;
  position: relative;
}

/* ── OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 6, 10, 0.82) 0%,
    rgba(4, 6, 10, 0.62) 45%,
    rgba(4, 6, 10, 0.88) 100%
  );
  z-index: 0;
}

/* ── CONTAINER ── */
.container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 460px;
}

/* ── HEADER ── */
.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

/* Logo — circle crop, no extra bg */
.logo-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 0 0 6px rgba(255,255,255,0.04),
    0 8px 32px rgba(0,0,0,0.6);
  flex-shrink: 0;
}
.logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Title block */
.org-name {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.org-name .line {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.4;
  color: #ffffff;
}

.line-xs {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.18em;
}

.line-sm {
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
}

.line-md {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.line-lg {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.14em;
}

/* ── DIVIDER ── */
.divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

/* ── SOCIALS ── */
.socials {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px 16px 16px;
  width: 108px;
  backdrop-filter: blur(8px);
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.2s ease;
}

.social-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-4px);
}

.social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icon svg {
  width: 32px;
  height: 32px;
}

.social-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}

/* ── CALL BUTTON ── */
.call-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.call-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  color: #050810;
  border: none;
  border-radius: 60px;
  padding: 18px 44px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.35);
  animation: heartbeat 1.5s ease-in-out infinite;
  transition: background 0.2s;
}
.call-btn:hover {
  background: #e8e8e8;
}

@keyframes heartbeat {
  0%   { box-shadow: 0 0 0 0   rgba(255,255,255,0.35); transform: scale(1); }
  15%  { box-shadow: 0 0 0 10px rgba(255,255,255,0.12); transform: scale(1.04); }
  30%  { box-shadow: 0 0 0 0   rgba(255,255,255,0);    transform: scale(1); }
  45%  { box-shadow: 0 0 0 6px rgba(255,255,255,0.08); transform: scale(1.025); }
  60%  { box-shadow: 0 0 0 0   rgba(255,255,255,0);    transform: scale(1); }
  100% { box-shadow: 0 0 0 0   rgba(255,255,255,0);    transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .call-btn { animation: none; }
}

.phone-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  opacity: 0.85;
}

.call-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #050810;
}

.call-hint {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

/* ── TAGLINE ── */
.tagline {
  text-align: center;
  padding: 0 8px;
}

.tagline p {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

.tagline p strong {
  color: #ffffff;
  font-weight: 800;
}
