:root {
  --navy: #0f172a;
  --steel: #475569;
  --accent: #1d4ed8;
  --line: #e2e8f0;
  --card: #ffffff;
}

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

body.connect-page {
  min-height: 100dvh;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--steel);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(29, 78, 216, 0.12), transparent),
    linear-gradient(180deg, #f8fafc 0%, #eef2ff 48%, #f8fafc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.connect-card {
  width: min(420px, 100%);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.1);
  padding: 28px 22px 22px;
}

.connect-head {
  text-align: center;
  margin-bottom: 22px;
}

.connect-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid var(--line);
  padding: 10px;
  margin: 0 auto 14px;
  display: block;
}

.connect-head h1 {
  font-family: "Sora", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.connect-tagline {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--steel);
}

.connect-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.connect-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
  color: var(--navy);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.connect-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.connect-link-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--icon-bg, #f1f5f9);
  color: var(--icon-color, var(--accent));
}

.connect-link-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.connect-link-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.connect-link-text strong {
  font-size: 0.92rem;
  font-weight: 700;
}

.connect-link-text small {
  font-size: 0.78rem;
  color: var(--steel);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.connect-link--web { --icon-bg: #eff6ff; --icon-color: #1d4ed8; }
.connect-link--wa { --icon-bg: #ecfdf5; --icon-color: #059669; }
.connect-link--phone { --icon-bg: #f0f9ff; --icon-color: #0284c7; }
.connect-link--mail { --icon-bg: #fef3c7; --icon-color: #b45309; }
.connect-link--in { --icon-bg: #eff6ff; --icon-color: #0a66c2; }
.connect-link--ig { --icon-bg: #fdf2f8; --icon-color: #db2777; }
.connect-link--yt { --icon-bg: #fef2f2; --icon-color: #dc2626; }
.connect-link--fb { --icon-bg: #eff6ff; --icon-color: #1877f2; }

.connect-foot {
  margin-top: 20px;
  text-align: center;
  font-size: 0.8rem;
}

.connect-foot a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.connect-foot a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
