:root {
  --ink: #10202f;
  --muted: #60707f;
  --paper: #ffffff;
  --soft: #f3f7f8;
  --line: #dbe5e8;
  --teal: #009b91;
  --navy: #17395d;
  --coral: #f2665e;
  --gold: #d59a2d;
  --shadow: 0 22px 60px rgba(16, 32, 47, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--soft);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(0, 155, 145, 0.15), transparent 28rem),
    linear-gradient(135deg, #f8fbfc 0%, #edf4f6 54%, #fff8ec 100%);
}

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

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 22px;
}

.hero {
  min-height: clamp(340px, 54vh, 520px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(18px, 3vw, 36px) 0 10px;
}

.hero-copy {
  max-width: 560px;
}

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

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 10vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.intro {
  max-width: 510px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.social-card:hover {
  transform: translateY(-2px);
}

.hero-media {
  position: relative;
  aspect-ratio: 1.12 / 1;
  min-height: 280px;
  max-height: 440px;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 48%);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.connect-panel {
  margin-top: 8px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(219, 229, 232, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 44px rgba(16, 32, 47, 0.08);
  backdrop-filter: blur(10px);
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.qr-card {
  width: 112px;
  flex: 0 0 auto;
  display: grid;
  gap: 7px;
  justify-items: center;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.qr-card img {
  width: 92px;
  height: 92px;
  display: block;
}

.qr-card span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.qr-mark {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.qr-mark span {
  border-radius: 5px;
}

.qr-mark span:nth-child(1) {
  background: var(--navy);
}

.qr-mark span:nth-child(2) {
  background: var(--teal);
}

.qr-mark span:nth-child(3) {
  background: var(--gold);
}

.qr-mark span:nth-child(4) {
  background: var(--coral);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.social-card {
  min-height: 116px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.social-card:hover {
  border-color: rgba(0, 155, 145, 0.42);
  box-shadow: 0 16px 34px rgba(16, 32, 47, 0.1);
}

.social-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
}

.social-card strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
  line-height: 1.2;
}

.social-card small {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.whatsapp .social-icon {
  background: #16a060;
}

.facebook .social-icon {
  background: #2563b8;
}

.instagram .social-icon {
  background: var(--coral);
}

.tiktok .social-icon {
  background: #161b22;
}

.youtube .social-icon {
  background: #d93025;
}

.linkedin .social-icon {
  background: var(--navy);
}

.website .social-icon {
  background: var(--gold);
}

.phone .social-icon {
  background: var(--teal);
}

.site-footer {
  padding: 22px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 920px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 18px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-media {
    min-height: 250px;
    max-height: 380px;
  }

  .connect-panel {
    margin-top: 4px;
  }

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

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 22px, 1120px);
    padding-top: 16px;
  }

  .hero {
    gap: 16px;
    padding-top: 8px;
  }

  h1 {
    font-size: clamp(3.1rem, 18vw, 4.7rem);
  }

  .hero-media {
    display: none;
  }

  .panel-heading {
    align-items: flex-start;
    margin-bottom: 14px;
  }

  .qr-card {
    width: 92px;
    padding: 7px;
  }

  .qr-card img {
    width: 76px;
    height: 76px;
  }

  .qr-card span {
    font-size: 0.66rem;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .social-card {
    min-height: 86px;
    padding: 14px;
  }
}
